Mermaid Test Page

Direct Mermaid Component Test

Mermaid Debug Test

graph TD A[Client] --> B[Load Balancer] B --> C[Server1] B --> D[Server2]
sequenceDiagram participant Alice participant Bob Alice->>John: Hello John, how are you? loop Healthcheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts <br/>prevail! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good!

Using HTML Divs

graph TD A[Start] --> B{Is it working?} B -->|Yes| C[Great!] B -->|No| D[Keep debugging] D --> B