| description | tags | files | |
|---|---|---|---|
Mermaid support for SilverBullet |
meta/library |
|
This plug adds basic Mermaid support to Silver Bullet.
For example:
flowchart LR
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
Note: this plug is compatible with SilverBulet v2.
Note: The Mermaid library itself is not bundled with this plug, it pulls the JavaScript from the JSDelivr CDN. This means this plug will not work without an Internet connection. The reason for this is primarily plug size (bundling the library would amount to 1.1MB). This way Mermaid is only loaded on pages with actual Mermaid diagrams rather than on every SB load.
In your CONFIG page, add the mermaid plug, e.g.:
```space-lua
config.set {
plugs = {
"github:silverbulletmd/silverbullet-mermaid/mermaid.plug.js"
}
}
```
Then run the Plugs: Update command.
Put a mermaid block in your markdown:
```mermaid
flowchart TD
Start --> Stop
```
And move your cursor outside of the block to live preview it!
You can use the mermaid config to tweak a few things:
```space-lua
config.set("mermaid", {
version = "11.4.0",
integrity = "new integrity hash",
-- or disable integrity checking
integrity_disabled = true
-- optional: register icon packs
icon_packs = {
{
name = "logos",
url = "https://unpkg.com/@iconify-json/logos@1/icons.json",
},
},
})
```