Bring back mermaid code fences in docs #6

This commit is contained in:
Sören Weber 2020-09-13 12:11:31 +02:00
parent aad4bf26e1
commit 2ab6982425
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589

View file

@ -27,6 +27,26 @@ graph LR;
C -->|Two| E[Result two]
{{</mermaid>}}
or you can use this alternative syntax:
```mermaid
graph LR;
A[Hard edge] -->|Link text| B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
```
renders as
```mermaid
graph LR;
A[Hard edge] -->|Link text| B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
```
## Sequence example
{{</* mermaid */>}}