Using Mermaid in Hugo I am trying out the mermaid markdown-like syntax for creating code diagrams, graphs, and pie charts.
Graph L-R graph LR; Root-->A & B & C A-->A1-->A2--->A3 B-->B1-->B2-->B3 C--->C1-->C2-->C3 Graph Top-Down graph TD; A-->B; A-->C; B-->D; C-->D; Pie Chart pie title Linux Distributions "Debian":42.96 "Ubuntu":50.05 "Arch":10.01 "CentOS":5 Flowchart flowchart TD; A[Choose OS] --> B{Do you want?} B -- Yes --> C[UNIX or Windows] C -- Windows --> D[Good Luck!
Continue reading