Mermaid: Create Flow Chart Using Code
Have you ever wanted to create a flow chart using simple code logic? That is when Mermaid comes in handy.
The code to create the diagram above:
graph TD
A[Should you go to work today?] –> B(Do you like working?)
B –Yes–> C{Go to work}
B –No–> D(Are you feeling sick?)
D –Yes–> E{Go to the doctor}
D –No–> F(Do you have a lot of work to do?)
F –Yes–> H(And you don't want to go?)
F –No–> H
H –Yes, I don't want to–>I(You signed up for this. Get dressed and go to work!)
Link to Mermaid Editor.
Favorite
Mermaid: Create Flow Chart Using Code Read More »