See it as a diagram
Everything below, as a diagram you can edit. Describe yours and see it in seconds.
No account needed · Editable canvas, not a picture
No build step: the page assembles in the browser
Most docs generators compile Markdown to HTML at build time, so what readers see is frozen until the next deploy. Docsify skips that entirely: index.html ships a small runtime that fetches the Markdown file and renders it in the browser on every visit. Change a Markdown file on the server and the next page load shows it; no pipeline runs.
For an embedded diagram this removes even the theoretical staleness a build could add. The Markdown references an image URL, the reader's browser fetches that URL at view time, and Datadef serves it with an ETag from the diagram's last edit and a five minute cache lifetime. Edit the diagram and readers see the new version within minutes, gated only by browser caching, never by a rebuild.
The :size syntax for a diagram that fits
Docsify extends Markdown image syntax with a sizing hint in the title position. Append ':size=WIDTHxHEIGHT' to set both dimensions, or ':size=WIDTH' for width alone with the aspect ratio preserved. Combine it with the render parameters on the image URL itself when you want more pixels for a wide layout: the URL parameters control how many pixels are rendered, the :size hint controls how large they display.
<!-- Display at 800px wide, aspect ratio preserved -->  <!-- Sharp render for wide screens, displayed at 1000x625 --> 
HTML and iframes render too
Docsify renders HTML embedded in Markdown, so the interactive form is available as a pasted iframe. Readers pan and zoom the actual diagram, which is the better fit for dense views like zone-grouped platforms or column-level lineage. The image form stays the right default for overview pages, where one request and instant paint matter more.
<iframe src="https://datadef.io/embed/my-platform-a1b2c3d4" style="width: 100%; height: 460px; border: none;" title="Platform architecture" ></iframe>
The tradeoff: runtime rendering and crawlers
The no-build model has a cost worth stating plainly: content renders client-side, so crawlers that do not execute JavaScript see a nearly empty shell. Public docs that need search visibility usually pair Docsify with prerendering or choose a static generator instead. For internal wikis and team docs, where most Docsify sites live, none of this matters and the zero-maintenance model is the draw.
The same reasoning applies to the diagram: on an internal Docsify site, the embed is purely a win. On a public one, the diagram is an image to crawlers either way, so the embed changes nothing for SEO; it just stays correct while a committed screenshot would rot.
Keeping the diagram itself current
Docsify removes the rebuild; the diagram edit remains. When the architecture changes, someone edits the diagram in Datadef, or an agent does: given the server at registry name io.datadef/mcp, it reads the repository and brings the diagram up to date, and the runtime-rendered page follows within minutes. There is no watcher in that sentence on purpose, nothing detects your code changes for you; a merge hook or a human kicks off the agent, whose API key comes with the paid plans.
One source of truth serving every surface, docs page included, is the architecture worth aiming at: see single source of truth for architecture.
What a no-build site cannot promise
The embed URLs exist only for projects shared public; flipping the project private turns the image into a 404. Docsify will not warn you: there is no build step, so there is no link checking of any kind, and a dead embed is only discovered by a reader looking at a broken image.
For small flows that belong to one page, docsify-mermaid style plugins keep the source in the same file as the prose, and that is the honest choice at ten nodes. Generated layout struggles past roughly twenty nodes or when zones matter, which is where the embedded form earns its keep. The plain Markdown baseline is covered in embed diagrams in Markdown.
FAQ
How do I resize an image in Docsify?
Does Docsify support iframes in Markdown?
Do embedded diagrams update without redeploying a Docsify site?
Is Docsify bad for SEO if my architecture docs are public?
Can I embed a private diagram in Docsify?