modified heading embedded in markdown (planned)
modified paragraph mermaid code blocks in markdown will be supported:
modified paragraph not yet implemented. when ready, will render server-side via...
M /docs/undefined +0 -0
1# mermaid diagrams2
3sublimated supports [mermaid](https://mermaid.js.org/) diagrams in two ways:4
5## embedded in markdown5## embedded in markdown (planned)6
7use a fenced code block with the `mermaid` language tag:7mermaid code blocks in markdown will be supported:8
9````10```mermaid11graph LR12 A[start] --> B[end]13```14````15
16the diagram renders inline when viewing the file. this uses client-side mermaid.js.16not yet implemented. when ready, will render server-side via Selkie at push time — no client-side mermaid.js.17
18## standalone .mmd files19
20create a `.mmd` or `.mermaid` file with mermaid syntax. sublimated renders it server-side on push — no JavaScript needed in the browser.2 unmodified lines