Mermaid diagrams
Create diagrams and visualizations using a popular, text-based syntax.
How to use
To create a mermaid diagram you embed inside a special code block with the type of mermaid
i.e.
```mermaid
MERMAID DIAGRAM CODE GOES HERE
```
Examples
Simple example
```mermaid
graph LR
a --> b
```
This renders like this:
Sequence example
Here's a more complex example of a sequence diagram:
```mermaid
sequenceDiagram
Alice->>+John: Hello John, how are you?
Alice->>+John: John, can you hear me?
John-->>-Alice: Hi Alice, I can hear you!
John-->>-Alice: I feel great!
```
This renders like this:
You can read more about Mermaid diagrams on the Mermaid website..