Skip to content

Mermaid plugin for Inkdrop which lets you draw diagrams and flowcharts

License

Notifications You must be signed in to change notification settings

aditdiqdpratama/inkdrop-mermaid

 
 

Repository files navigation

Mermaid plugin for Inkdrop

A plugin for drawing flowcharts and diagrams using mermaid.js in Markdown code block.

Install

ipm install mermaid

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:

Changelog

2.3.0

Updated to the latest mermaid version (8.9.2) [April 13, 2021]

2.2.0

Updated to the latest mermaid version (8.8.0) [October 2, 2020]

2.1.0

Updated to the latest mermaid version [December 20, 2019]

1.0.0 - First Release

About

Mermaid plugin for Inkdrop which lets you draw diagrams and flowcharts

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 93.1%
  • Less 6.9%