A markdown for drawing finite automata

this project lets us to draw finite automata and it will great if its integrated in joplin as computer science students will love it

1 Like

Joplin does use Mermaid syntax and I have used it successfully for small non-complicated directed graphs.

Here is an example.

graph TD
  A[Christmas] -->|Get money| B(Go shopping)
  B --> C{Let me think}
  C -->|One| D[Laptop]
  C -->|Two| E[iPhone]
  C -->|Three| F[fa:fa-car Car]
  F --> B

HTH

1 Like