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
Many of the features of mermaid sequenceDiagrams are not working? or perhaps they aren't supported?
library(DiagrammeR)
mermaid("
sequenceDiagram
Alice->>Bob: Hello Bob, how are you ?
Bob->>Alice: Fine, thank you. And you?
create participant Carl
Alice->>Carl: Hi Carl!
create actor D as Donald
Carl->>D: Hi!
destroy Carl
Alice-xCarl: We are too many
destroy Bob
Bob->>Alice: I agree
")
However, removing the 'create' and 'destroy' calls works.
Activations do not work. i.e.,
sequenceDiagram
Alice->>John: Hello John, how are you?
activate John
John-->>Alice: Great!
deactivate John
Additionally, there does not appear to be any way to format colours and fills for the components of the diagram?
The text was updated successfully, but these errors were encountered:
Many of the features of mermaid sequenceDiagrams are not working? or perhaps they aren't supported?
However, removing the 'create' and 'destroy' calls works.
Activations do not work. i.e.,
Additionally, there does not appear to be any way to format colours and fills for the components of the diagram?
The text was updated successfully, but these errors were encountered: