Skip to content

Instantly share code, notes, and snippets.

@avidrucker
Created March 14, 2024 16:43
Show Gist options
  • Save avidrucker/b9d7d2b2c9c3e37358886093573fb573 to your computer and use it in GitHub Desktop.
Save avidrucker/b9d7d2b2c9c3e37358886093573fb573 to your computer and use it in GitHub Desktop.
An example Mermaid diagram for Language Processing
flowchart TD
    Q5 --b--> Q5
    Q5 --b--> Q4
    Q4 --a--> Q4
    Q4 --e--> Q5
    Q0 --a--> Q4
    Q0 --a--> Q0
    Q0 --a--> Q3
    Q0 --e--> Q1
    Q1 --a--> Q1
    Q1 --b--> Q1
    Q1 --b--> Q3
    Q1 --e--> Q2
    Q1 --b--> Q4
    Q2 --e--> Q3
    Q2 --a--> Q5
    Q2 --b--> Q5
    Q3 --a--> Q3
Loading
@avidrucker
Copy link
Author

https://mermaid.live/ is a site you can visit to make these kinds of diagrams on the fly

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