Skip to content

Instantly share code, notes, and snippets.

@wzulfikar
Last active September 15, 2022 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wzulfikar/49236bfb1229940af609ee0d64544e5c to your computer and use it in GitHub Desktop.
Save wzulfikar/49236bfb1229940af609ee0d64544e5c to your computer and use it in GitHub Desktop.
Mermaid: Test mermaid diagram in gist.

A test to see if Mermaid diagrams work in Github Gist.

Mermaid docs: https://mermaid-js.github.io/mermaid/#/

Simple

graph LR;
  John-->Eve

Flowchart

flowchart LR
    Start --> Stop

Sequence Diagram

sequenceDiagram
    Alice->>John: Hello John, how are you?
    activate John
    John-->>Alice: Great!
    deactivate John
@Tahid5
Copy link

Tahid5 commented Sep 15, 2022

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