ToDiagram

Mermaid

Create flowcharts using Mermaid syntax

Create flowcharts using Mermaid syntax for version-controlled diagrams.

Mermaid Diagram Visualization

Example

flowchart LR
    A[Start] --> B{Decision}
    B -->|Yes| C[Process]
    B -->|No| D[End]
    C --> D

Mermaid Editor

Supported Syntax

Currently, only flowchart syntax is supported:

  • flowchart LR - Left to right
  • flowchart 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