Mermaid
Create flowcharts using Mermaid syntax
Create flowcharts using Mermaid syntax for version-controlled diagrams.
Example
flowchart LR
A[Start] --> B{Decision}
B -->|Yes| C[Process]
B -->|No| D[End]
C --> D
Supported Syntax
Currently, only flowchart syntax is supported:
flowchart LR
- Left to rightflowchart TB
- Top to bottom- Node shapes:
[]
,()
,{}
,>]
,[()]
- Connections:
-->
,-.->
,==>
- Labels on connections
Features
- Live Preview: See changes instantly as you type
- Export: Export to PNG, JPEG, or SVG
- Themes: Light and dark theme support
- Version Control: Plain text format is git-friendly