summaryrefslogtreecommitdiff
path: root/exampleSite/content/docs/shortcodes/mermaid.md
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2019-10-08 23:55:34 +0200
committerAlex Shpak <alex-shpak@users.noreply.github.com>2019-10-08 23:55:34 +0200
commitc7f93dc789da16ff03fa37b1c14ccc03c80e6b0a (patch)
treedac7298f9600cb14a51eb2a740e530ff2b29e6c5 /exampleSite/content/docs/shortcodes/mermaid.md
parent1db63cef5cd631dd2fd73028183bc38ec816e92f (diff)
Update example file structure, give each shortcode own file
Diffstat (limited to 'exampleSite/content/docs/shortcodes/mermaid.md')
-rw-r--r--exampleSite/content/docs/shortcodes/mermaid.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/exampleSite/content/docs/shortcodes/mermaid.md b/exampleSite/content/docs/shortcodes/mermaid.md
new file mode 100644
index 0000000..3a617bc
--- /dev/null
+++ b/exampleSite/content/docs/shortcodes/mermaid.md
@@ -0,0 +1,38 @@
+# Mermaid Chart
+
+[Mermaid](https://mermaidjs.github.io/) is library for generating svg charts and diagrams from text.
+
+## Example
+
+{{< columns >}}
+```tpl
+{{</* mermaid [class="text-center"]*/>}}
+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 */>}}
+```
+
+<--->
+
+{{< mermaid >}}
+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 >}}
+
+{{< /columns >}}