标签:-- Alice JS 学习 Bob John Mermaid
Mermaid 学习
1. 指导文档
https://mermaid.js.org/intro/n00b-syntaxReference.html
2. 画图模板
2.1 流程图
flowchart LR
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
2.2 时序图
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!
标签:--,
Alice,
JS,
学习,
Bob,
John,
Mermaid
From: https://www.cnblogs.com/aclq/p/17289596.html