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 lines854. when you view the file, the SVG is displayed inline865. edit via `~edit` opens CodeMirror, save triggers re-render876. if rendering fails (invalid syntax), the source is shown as highlighted code88
89## embedding in markdown (planned)89## embedding in markdown90
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```mermaid95graph LR96 A --> B97```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 comments105
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