Skip to content
New issue

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

sequence diagrams don't support participant aliasing #263

Closed
gibson042 opened this issue Dec 6, 2015 · 1 comment
Closed

sequence diagrams don't support participant aliasing #263

gibson042 opened this issue Dec 6, 2015 · 1 comment

Comments

@gibson042
Copy link
Contributor

Per http://bramp.github.io/js-sequence-diagrams/#syntax , participant {actor} as {alias} should be accepted.

@xax
Copy link

xax commented Jun 19, 2021

JS Sequence Diagrams uses participant <ID> as <ALIAS> the other way round, compared to mermaid.

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
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants