diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2022-11-02 23:28:30 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2022-11-02 23:28:30 +0100 |
commit | 9013a1f4570885416254aabbe7e389822d2fb215 (patch) | |
tree | 99733fd2fab2fea9d70f4d679adf3527c3c73035 /exampleSite/content/docs/shortcodes/mermaid.md | |
parent | 6e1b44c4c4654d8abb8c534b50869c754b8cad27 (diff) |
#352: move english content to content.en
Diffstat (limited to 'exampleSite/content/docs/shortcodes/mermaid.md')
-rw-r--r-- | exampleSite/content/docs/shortcodes/mermaid.md | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/exampleSite/content/docs/shortcodes/mermaid.md b/exampleSite/content/docs/shortcodes/mermaid.md deleted file mode 100644 index a9ed4d4..0000000 --- a/exampleSite/content/docs/shortcodes/mermaid.md +++ /dev/null @@ -1,41 +0,0 @@ -# Mermaid Chart - -[MermaidJS](https://mermaid-js.github.io/) is library for generating svg charts and diagrams from text. - -{{< hint info >}} -**Override Mermaid Initialization Config** - -To override the [initialization config](https://mermaid-js.github.io/mermaid/#/Setup) for Mermaid, -create a `mermaid.json` file in your `assets` folder! -{{< /hint >}} - -## Example - -{{< columns >}} -```tpl -{{</*/* mermaid [class="text-center"]*/*/>}} -stateDiagram-v2 - State1: The state with a note - note right of State1 - Important information! You can write - notes. - end note - State1 --> State2 - note left of State2 : This is the note to the left. -{{</*/* /mermaid */*/>}} -``` - -<---> - -{{< mermaid >}} -stateDiagram-v2 - State1: The state with a note - note right of State1 - Important information! You can write - notes. - end note - State1 --> State2 - note left of State2 : This is the note to the left. -{{< /mermaid >}} - -{{< /columns >}} |