Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.08 KB

README.md

File metadata and controls

48 lines (31 loc) · 1.08 KB

AddMermaid

Add mermaid.js rendering for kanboard markdown texts - requires markdownplus

See mermaid.js for available diagram types and their syntax.

Author

  • Eugen Neuber
  • License MIT

Requirements

Kanboard >= v1.0.48
Kanboard installed at a web server. You can find the download at kanboard.org Plugin MarkdownPlus

Installation

Install this plugin by cloning this repository into kanboard plugin directory:

cd $YOUR_KANBOARD_DOCUMENT_ROOT
 
git clone https://github.com/euneuber/AddMermaid.git plugins/AddMermaid

Note: Plugin folder is case-sensitive.

⭐ If you like it, do not forget to give a star on GitHub!

Bug Reporting Issues

Please create an issue for any bugs you've found.

Example

Add this snippet to your markdown text:

<div class="mermaid">
sequenceDiagram
    Alice->>John: Hello John, how are you?
    John-->>Alice: Great!
    Alice-)John: See you later!
</div>