Skip to content

Instantly share code, notes, and snippets.

@uraimo
Last active November 9, 2022 17:37
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 uraimo/7f71e58bf91d9a3ee09182b6ede3a5bc to your computer and use it in GitHub Desktop.
Save uraimo/7f71e58bf91d9a3ee09182b6ede3a5bc to your computer and use it in GitHub Desktop.
Create graphs with markdown on github

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

    ```mermaid
    stateDiagram-v2
      [*] --> Still
      Still --> [*]

      Still --> Moving
      Moving --> Still
      Moving --> Crash
      Crash --> [*]
    ```
stateDiagram-v2
  [*] --> Still
  Still --> [*]

  Still --> Moving
  Moving --> Still
  Moving --> Crash
  Crash --> [*]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment