Prompt
Create a sample flowchart
Play Here
graph TD
A[Start] --> B{Is it raining?}
B -->|Yes| C[Take an umbrella]
B -->|No| D[Enjoy the weather]
C --> E[Go outside]
D --> E
E --> F[End]
Mermaid File
Claude 3.5 Sonnet uses Mermaid to create diagrams
graph TD
A[Start] --> B{Is it raining?}
B -->|Yes| C[Take an umbrella]
B -->|No| D[Enjoy the weather]
C --> E[Go outside]
D --> E
E --> F[End]
If you want to save the diagram as a file (svg, png) you can use the Mermaid online editor. Click Actions in the left menu and select the button corresponding to the image type you would like to download.