72fe29c ←e5ebfa5antonApr 6, 2026 api

edit index.md via macOS

M /docs/undefined +0 -0
modified heading embedding in markdown (planned)
modified paragraph mermaid code blocks in markdown files will be rendered serve...
modified paragraph not yet supported — tracked in tasks. when implemented, will...
M /docs/undefined +0 -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
89## embedding in markdown (planned)
90
91mermaid code blocks in markdown files are also rendered:
91mermaid code blocks in markdown files will be rendered server-side at push time:
92
93````
94```mermaid
95graph LR
96 A --> B
97```
98````
99
100this uses client-side rendering (mermaid.js loaded in the browser). standalone `.mmd` files use server-side rendering instead.
100not yet supported — tracked in tasks. when implemented, will use Selkie (same server-side renderer as standalone `.mmd` files), not client-side mermaid.js.
101
102## spike: diagram-aware comments
103
104mermaid 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.
8 unmodified lines