Skip to content

Instantly share code, notes, and snippets.

@Shawn-Armstrong
Last active March 8, 2024 18:28
Show Gist options
  • Save Shawn-Armstrong/1ccea3beda369ebd089e96a3877006ac to your computer and use it in GitHub Desktop.
Save Shawn-Armstrong/1ccea3beda369ebd089e96a3877006ac to your computer and use it in GitHub Desktop.

Flow Chart

flowchart TB
    c1-->a2
    subgraph ide1 [one]
    a1-->a2
    end
Loading

Sequence Diagram

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

State Diagram

---
title: Simple sample
---
stateDiagram-v2
    [*] --> Still
    Still --> [*]

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