Publishing
Print Markdown documents
Render editor documents to clean semantic HTML so Markdown-style content can be printed, shared, or converted by your own pipeline.
Why this deserves its own page
Print-oriented pages should connect editing to output, not just list editor controls.
The better answer is specific: show the feature, give the copy-paste path, link to the deep docs, and let the reader try the real editor. That is how documentation becomes part of the product instead of a folder people visit only when something breaks.
Copy-paste example
Start with the batteries-included React API. The same document can later be exported as JSON, HTML, or plain text, depending on what your app needs.
jsx
import { exportDocumentHTML } from 'noteloom';
const html = exportDocumentHTML(editor.store, editor.registry, editor.inlineRegistry);What to try live
Create a document, export HTML, then print from your app layout.