Mermaid流程图

Mermaid流程图 #

MermaidJS 是一个从文本生成 svg 图表和示意图的库。

覆盖 Mermaid 初始化配置

要覆盖 Mermaid 的 初始化配置,请在 assets文件夹中创建一个 mermaid.json 文件!

示例 #

{{< mermaid class="optional" >}}
stateDiagram-v2
    State1: 带有注释的状态
    note right of State1
        重要信息!您可以做笔记。
    end note
    State1 --> State2
    State2: 注释
    note left of State2 : 这是左边的注释。
{{< /mermaid >}}

stateDiagram-v2 State1: 带有注释的状态 note right of State1 重要信息!您可以做笔记。 end note State1 --> State2 State2: 注释 note left of State2 : 这是左边的注释。