7c34a25 ←da4494dantonApr 7, 2026 api

edit index.md via macOS

M /docs/undefined +2 -0
modified heading embedding in markdown
modified paragraph mermaid code blocks in markdown files are rendered server-si...
deleted paragraph not yet supported — tracked in tasks. when implemented, will...
+ inserted paragraph uses Selkie (same server-side renderer as standalone .mmd fi...
+ inserted paragraph you can also embed standalone .mmd files via content block t...
M /docs/undefined +2 -0
84 unmodified lines
854. when you view the file, the SVG is displayed inline
865. edit via `~edit` opens CodeMirror, save triggers re-render
876. if rendering fails (invalid syntax), the source is shown as highlighted code
88
89## embedding in markdown (planned)
89## embedding in markdown
90
91mermaid code blocks in markdown files will be rendered server-side at push time:
91mermaid code blocks in markdown files are rendered server-side at push time:
92
93````
94```mermaid
95graph LR
96 A --> B
97```
98````
99
100not yet supported — tracked in tasks. when implemented, will use Selkie (same server-side renderer as standalone `.mmd` files), not client-side mermaid.js.
100uses Selkie (same server-side renderer as standalone `.mmd` files), not client-side mermaid.js. multiple blocks in one file are batch-rendered in a single call. if a block has invalid syntax, it falls back to a regular code block.
101
102you can also embed standalone `.mmd` files via content block transclusion — see the [markdown mermaid docs](../markdown/mermaid.md).
103
104## spike: diagram-aware comments
105
106mermaid SVG nodes get auto-generated IDs (e.g. `flowchart-A-0`, `flowchart-B-1`). since we render as inline SVG, these are real DOM elements that already support inline comments and reactions.
107
7 unmodified lines