mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
|
graph LR;
|
||
|
A[Hard edge]-->|Link text|B(Round edge);
|
||
|
B-->C{Decision};
|
||
|
C-->|One|D[Result one];
|
||
|
C-->|Two|E[Result two];
|
||
|
classDef pink fill:#f9f,stroke:#333,stroke-width:4px;
|
||
|
class C pink;
|