Skip to content

Instantly share code, notes, and snippets.

@chgeuer
Last active May 11, 2022 10:54
Show Gist options
  • Save chgeuer/bfd27ff7260427ffc3f8ede81ae8fe27 to your computer and use it in GitHub Desktop.
Save chgeuer/bfd27ff7260427ffc3f8ede81ae8fe27 to your computer and use it in GitHub Desktop.

Sequence Diagram Comparison

MermaidJS

```mermaid
sequenceDiagram
    Alice->>John: Hello John, how are you?
    John-->>Alice: Great!
    Alice-)John: See you later!
```

results in

sequenceDiagram
    Alice->>John: Hello John, how are you?
    John-->>Alice: Great!
    Alice-)John: See you later!
Loading
Alice -> John: Hello John, how are you?
John --> Alice: Great!
Alice -> John: See you later!

results in

image-20220511125204526

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment