Mermaid Test
Here is a flowchart:
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great!]
B -->|No| D[Debug]
D --> B
And a sequence diagram:
sequenceDiagram
participant U as User
participant S as Server
U->>S: GET /test.md
S-->>U: 200 OK with mermaid
That's it!