Mermaid Diagrams Plugin
Categories: Renderer Plugins, Bundled plugin, 7.x
Bundled plugin: If you're using a b2evolution version that supports this plugin, it is already in your plugins folder. There is no need to download it. If it is not installed yet, simply click "Install new" in your plugin list.
This plugin renders text written in a similar manner as markdown into diagrams and flowcharts using the Mermaid JS library.
Author | |
---|---|
Last tested in version |
This plugin is not available in WYSIWYG mode!
Example
The following markup was used to create the example Mermaid diagram:
```mermaid
sequenceDiagram
loop Daily query
Alice->>Bob: Hello Bob, how are you?
alt is sick
Bob->>Alice: Not so good :(
else is well
Bob->>Alice: Feeling fresh like a daisy
end
opt Extra response
Bob->>Alice: Thanks for asking
end
end
```