uci-doc/exampleSite/content/shortcodes/mermaid.md

43 lines
895 B
Markdown
Raw Normal View History

2020-05-31 09:17:32 -07:00
[Mermaid](https://mermaidjs.github.io/) is library for generating SVG charts and diagrams from text.
2020-01-12 06:33:02 -08:00
## Example
{{< columns >}}
2020-05-31 09:17:32 -07:00
2020-09-10 13:23:24 -07:00
<!-- prettier-ignore -->
2020-01-12 06:33:02 -08:00
```tpl
{{</* mermaid class="text-center"*/>}}
2020-01-12 06:33:02 -08:00
sequenceDiagram
Alice->>Bob: Hello Bob, how are you?
alt is sick
Bob->>Alice: Not so good :(
else is well
Bob->>Alice: Feeling fresh like a daisy
end
opt Extra response
Bob->>Alice: Thanks for asking
end
{{</* /mermaid */>}}
```
<--->
<!-- spellchecker-disable -->
2020-09-10 13:23:24 -07:00
<!-- prettier-ignore -->
{{< mermaid class="text-center" >}}
2020-01-12 06:33:02 -08:00
sequenceDiagram
Alice->>Bob: Hello Bob, how are you?
alt is sick
Bob->>Alice: Not so good :(
else is well
Bob->>Alice: Feeling fresh like a daisy
end
opt Extra response
Bob->>Alice: Thanks for asking
end
{{< /mermaid >}}
2020-09-10 13:23:24 -07:00
<!-- spellchecker-enable -->
2020-01-12 06:33:02 -08:00
{{< /columns >}}