mermaid-animator/test/fixtures/sequence.mmd

16 lines
221 B
Plaintext

graph TD
A[Start]
---
graph TD
A[Start] --> B[Process]
---
graph TD
A[Start] --> B[Process]
B --> C{Decision}
---
graph TD
A[Start] --> B[Process]
B --> C{Decision}
C -->|Yes| D[Result]
C -->|No| E[Other]