ab8776a ←c42eb1fantonApr 7, 2026 api

create excalidraw.md via macOS

A /docs/undefined +25 -0
A /docs/undefined +25 -0
1# excalidraw diagrams
2
3sublimated supports [excalidraw](https://excalidraw.com/) diagrams in two ways:
4
5## standalone .excalidraw files
6
7create an `.excalidraw` file (JSON format). sublimated renders it server-side on push — no JavaScript needed in the browser.
8
9see the [excalidraw docs](../excalidraw/) for supported element types, demos, and details.
10
11## content block transclusion
12
13embed an existing `.excalidraw` file using [iA Writer](ia-writer.md) or [Obsidian](obsidian.md) content block syntax:
14
15```
16/diagrams/architecture.excalidraw
17```
18
19or:
20
21```
22![[architecture.excalidraw]]
23```
24
25the pre-rendered SVG from the file's `render_svg` representation is embedded inline — zero re-rendering cost. same mechanism as [mermaid](mermaid.md) content blocks.