Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 862 Bytes

README-mobile.md

File metadata and controls

32 lines (25 loc) · 862 Bytes

It allows you to draw flowcharts and diagrams using mermaid.js in Markdown code block.

Usage

```mermaid
graph LR
    A --- B
    B-->C[fa:fa-ban forbidden]
    B-->D(fa:fa-spinner);
```

It will be rendered as:

```mermaid
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!
```

It will be rendered as: