生成的图表如下所示: 2. 时序图(sequence diagram) 代码语言:javascript 复制 sequenceDiagram participant Alice participant Bob Alice->John:Hello John,how are you?loop Healthcheck John->John:Fight against hypochondria end Note rightofJohn:Rational thoughtsprevail...John-->Alice:Great!John->Bob:How ...
3.甘特图(gantt diagram) gantt dateFormat YYYY-MM-DDtitle Adding GANTT diagram functionality to mermaidsectionAsectionCompleted task :done, des1,2014-01-06,2014-01-08Active task :active, des2,2014-01-09,3dfuture task : des3, after des2,5dfuture task2 : des4, after des3,5dsectionCritical...
classDef defaultfill:#f90,stroke:#555,stroke-width:4px;id1(Start)-->id2(Stop) 序列图(sequence diagram)1 序列图 示例: sequenceDiagram Alice->>John: Hello John, how are you ? John-->>Alice: Great! Alice--->>John: Huang,you are better . John-->>Alice: yeah, Just not bad. sequen...
https://mermaidjs.github.io/sequenceDiagram.html 因为mermaid 支持不同图表,所以所有的序列图需要以sequenceDiagram开头 sequenceDiagram [参与者1][连线][参与者2]:消息文本 ... 参与者 ```mermaid! sequenceDiagram participant John participant Alice Alice->>John: Hello John, how are you? John-->>A...
Sequence diagram [docs - live editor] sequenceDiagram Alice->>John: Hello John, how are you? loop HealthCheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good! sequenceDiagram...
状态图 [[docs-live editor] stateDiagram-v2 [*] --> Still Still --> [*] Still --> Moving Moving --> Still Moving --> Crash Crash --> [*] 饼图[文档-live editor] pie "Dogs" : 386 "Cats" : 85 "Rats" : 15 Git 图 [实验特性 -live editor] ...
Sequence diagram [docs - live editor] sequenceDiagram Alice->>John: Hello John, how are you? loop HealthCheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good!
Flowchart [docs-live editor] flowchart LR A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2] Sequence diagram [docs-live editor] sequenceDiagram Alice->>John: Hello John, how are you? loop HealthCheck John->>John: Fight against hyp...
Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown - mermaid/docs/classDiagram.md at 170ed89e9ef3e33dc84f8656eed1725379d505df · mermaid-js/mermaid
Mermaid是一种开源的可交互式的数据可视化库,它使用 Markdown 标记语言来生成图表和流程图。它通常用于...