c42eb1f ←ce58ee5antonApr 7, 2026 api

edit mermaid.md via macOS

M /docs/undefined +13 -15
deleted heading embedded in markdown (planned)
deleted paragraph two ways to include mermaid diagrams in markdown, both plann...
modified heading inline mermaid code blocks (planned)
modified paragraph the pre-rendered SVG from the file's render_svg representati...
+ inserted paragraph this also works for .excalidraw files. see excalidraw for de...
M /docs/undefined +13 -15
6 unmodified lines
7create a `.mmd` or `.mermaid` file with mermaid syntax. sublimated renders it server-side on push — no JavaScript needed in the browser.
8
9see the [mermaid docs](../mermaid/) for supported diagram types, styling, and demos.
10
11## embedded in markdown (planned)
11## content block transclusion
12
13two ways to include mermaid diagrams in markdown, both planned:
14
15### mermaid code blocks
16
17````
18```mermaid
19graph LR
20 A[start] --> B[end]
21```
22````
23
24not yet implemented. will render server-side via Selkie at push time — no client-side mermaid.js.
25
26### content block transclusion
27
13embed an existing `.mmd` file using [iA Writer](ia-writer.md) or [Obsidian](obsidian.md) content block syntax:
14
15```
16/diagrams/architecture.mmd
4 unmodified lines
21```
22![[architecture.mmd]]
23```
24
40not yet implemented. will embed the pre-rendered SVG from the file's `render_svg` representation — zero re-rendering cost.
25the pre-rendered SVG from the file's `render_svg` representation is embedded inline — zero re-rendering cost.
26
27this also works for `.excalidraw` files. see [excalidraw](excalidraw.md) for details.
28
29## inline mermaid code blocks (planned)
30
31````
32```mermaid
33graph LR
34 A[start] --> B[end]
35```
36````
37
38not yet implemented. will render server-side via Selkie at push time — no client-side mermaid.js.