Mermaid Example

A short example of using the Mermaid library to add charts.

This Knowledge Base now supports Mermaid, a handy way to create charts from text. The following example shows a very simple chart, and the code to use.

To add a Mermaid chart, encase the Mermaid code between {{< mermaid >}}, as follows:

{{<mermaid>}}
graph TD;
  A-->B;
  A-->C;
  B-->D;
  C-->D;
{{</mermaid>}}

And it renders as so:

graph TD; A-->B; A-->C; B-->D; C-->D;
Last modified 2021.09.09: Added mermaid example. (3b6fd39)