Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/inkdropapp/inkdrop-mermaid

Mermaid plugin for Inkdrop which lets you draw diagrams and flowcharts
https://github.com/inkdropapp/inkdrop-mermaid

Last synced: 20 days ago
JSON representation

Mermaid plugin for Inkdrop which lets you draw diagrams and flowcharts

Awesome Lists containing this project

README

        

It allows you to draw flowcharts and diagrams using [mermaid.js](https://mermaidjs.github.io/) 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:

![](https://github.com/inkdropapp/inkdrop-mermaid/raw/master/docs/images/example-01.png)

```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
prevail...
John-->Alice: Great!
John->Bob: How about you?
Bob-->John: Jolly good!
```

It will be rendered as:

![](https://github.com/inkdropapp/inkdrop-mermaid/raw/master/docs/images/example-02.png)