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 lines7create 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 transclusion12
13two ways to include mermaid diagrams in markdown, both planned:14
15### mermaid code blocks16
17````18```mermaid19graph LR20 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 transclusion27
13embed an existing `.mmd` file using [iA Writer](ia-writer.md) or [Obsidian](obsidian.md) content block syntax:14
15```16/diagrams/architecture.mmd4 unmodified lines21```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```mermaid33graph LR34 A[start] --> B[end]35```36````37
38not yet implemented. will render server-side via Selkie at push time — no client-side mermaid.js.