mermaid/test/fixtures/test2.mermaid
2014-12-20 17:40:58 -08:00

8 lines
208 B
Text

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;