Back to Leetcode Go

Mermaid Chart

website/themes/book/exampleSite/content/docs/shortcodes/mermaid.md

1.7.11012 B
Original Source

Mermaid Chart

Mermaid is library for generating svg charts and diagrams from text.

{{< hint info >}} Override Mermaid Initialization Config

To override the initialization config for Mermaid, create a mermaid.json file in your assets folder! {{< /hint >}}

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 >}}