Skip to content
Snippets Groups Projects
Commit 9edd3b59 authored by Uwe Jandt (DESY, HIFIS)'s avatar Uwe Jandt (DESY, HIFIS)
Browse files

add mermaid diagrams

parent 6507b78b
No related branches found
No related tags found
3 merge requests!4Add mermaid,!3Mods uj,!1Create PlantUML examples
......@@ -207,4 +207,5 @@ data or mind maps.
* [Wordcloud](examples/vega-wordcloud.md)
* [GraphViz](examples/graphviz.md)
* [Block Diagrams](examples/blockdiag.md)
* [Mermaid Diagrams](examples/mermaid.md)
# Mermaid Diagrams
[Mermaid](https://mermaid-js.github.io/mermaid) is a Javascript based charting tool, rendering diagrams from markdown-like syntax.
*Note:* Although the Kroki plugin also supports Mermaid, this Gitlab instance will instead plot Mermaid diagrams directly.
<details>
<summary>Show code</summary>
<div>
```mermaid
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!
```
</div>
</details>
```mermaid
sequenceDiagram
Alice->>Bob: Hello Bob!
Bob-->>Alice: Fine!
Alice->>Bob: How are you?
Bob-->>Alice: Perfect!
Alice-)Bob: See you!
```
Find more examples at: <https://mermaid-js.github.io/mermaid>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment