Easily convert Mermaid diagrams generated with AI tools like Claude.AI, ChatGPT, and Mistral to PNG or PDF. Ideal for including diagrams in technical documentation or presentations.
If you need help with this tool contact us.
Example prompt for Claude.AI or ChatGPT:
"Create a Mermaid diagram showing a simple decision process for temperature control. The process starts from 'Start', checks if the temperature is greater than 25°C, if yes, activates the air conditioner, otherwise maintains the current temperature. Both paths should converge to an 'End' node. Use a flowchart style with rectangular nodes for actions and a diamond for the decision."Example of the resulting diagram:
flowchart TD
A[Start] --> B{Temperature > 25°C?}
B -->|Yes| C[Activate AC]
B -->|No| D[Maintain Temperature]
C --> E[End]
D --> E
Tip: If you're working with Claude.AI, you can ask it to optimize or modify the diagram until you get exactly the representation you want.