You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple question: Does DiagrammeR automatically use the latest Mermaid version?
I was trying to run a simple flowchart in R,
The version in Mermaid Live Editor (version 9.2.2) is here
flowchart LR
a o--o A
b <--> B
c x--x |NA|C
When I copy this code to R,
library(DiagrammeR)
# This doesn't work:
mermaid(
"graph LR
a o--o A
b <--> B
c x--x |NA|C"
)
# This works:
mermaid(
"graph LR
a --> A
b ==> B
c --> |NA|C"
)
It feels like mermaid() doesn't support some features that are avaliable in mermaid.js.
The text was updated successfully, but these errors were encountered:
A simple question: Does DiagrammeR automatically use the latest Mermaid version?
I was trying to run a simple flowchart in R,
The version in Mermaid Live Editor (version 9.2.2) is here
When I copy this code to R,
It feels like mermaid() doesn't support some features that are avaliable in mermaid.js.
The text was updated successfully, but these errors were encountered: