Simple page 01
You can use mermaid in your Markdown content.
For example:
1## Mermaid
2
3A mermaid diagram example.
4
5```mermaid
6 sequenceDiagram
7 participant Alice
8 participant Bob
9 Alice->>John: Hello John, how are you?
10 loop Healthcheck
11 John->>John: Fight against hypochondria
12 end
13 Note right of John: Rational thoughts <br/>prevail!
14 John-->>Alice: Great!
15 John->>Bob: How about you?
16 Bob-->>John: Jolly good!
17```
Will be rendered as:
Mermaid
A mermaid diagram example.
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!