We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per http://bramp.github.io/js-sequence-diagrams/#syntax , participant {actor} as {alias} should be accepted.
participant {actor} as {alias}
The text was updated successfully, but these errors were encountered:
Allow sequenceDiagram participant aliasing
b429397
Fixes mermaid-jsgh-263
JS Sequence Diagrams uses participant <ID> as <ALIAS> the other way round, compared to mermaid.
participant <ID> as <ALIAS>
JS Sequence Diagrams:
participant Alice as A participant Bob as B A->>B: initialize something
Mermaid:
sequenceDiagram participant A as Alice participant B as Bob A->>B: initialize something
Sorry, something went wrong.
No branches or pull requests
Per http://bramp.github.io/js-sequence-diagrams/#syntax ,
participant {actor} as {alias}
should be accepted.The text was updated successfully, but these errors were encountered: