Back to Tldraw

Pasting Mermaid code as shapes

apps/examples/src/examples/use-cases/mermaid-pasting/README.md

5.2.5337 B
Original Source

Paste mermaid diagrams!


This example shows how to handle the pasting of mermaid diagrams into the canvas.

Supported diagrams:

  • Flowcharts
  • State
  • Sequence
  • Mindmap

Example:

graph TD
    A[Start] --> B{Is it correct LALA?}
    B -- Yes --> C[Display Diagram]
    B -- No --> D[Edit Code]
    D --> B
    C --> E[End]