🧜‍♀️ Mermaid Parser Test

📝 Example Mermaid Codes

Flowchart

graph TD A[Start] --> B{Decision} B -->|Yes| C[Action 1] B -->|No| D[Action 2] C --> E[End] D --> E

Sequence Diagram

sequenceDiagram participant A as Alice participant B as Bob A->>B: Hello Bob, how are you? B-->>A: Great!

Class Diagram

classDiagram class Animal { +String name +int age +makeSound() } class Dog { +String breed +bark() } Animal <|-- Dog

Pie Chart

pie title Pets adopted by volunteers "Dogs" : 386 "Cats" : 85 "Rats" : 35