Checkboxes and tasks
Markdown checklist editor
Build Markdown-style checklists inside a React editor with inline checkbox controls, clean JSON storage, and copy-paste friendly output.
Why this deserves its own page
A developer looking for a checklist editor usually wants task lists that feel native while still saving as structured data.
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 { useEditor, NoteloomEditor } from 'noteloom';
function ChecklistEditor() {
const editor = useEditor();
return <NoteloomEditor editor={editor} />;
}What to try live
Try an inline checkbox, then export the same document as JSON or HTML.