Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 404 Bytes

test_mermaid.md

File metadata and controls

23 lines (20 loc) · 404 Bytes
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;

Loading
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!

Loading