noteloom
← All features

Rich text editing

Markdown editor for React

A block-style Markdown editor experience for React apps: headings, lists, code, embeds, inline widgets, slash commands, and JSON output.

Why this deserves its own page

This page is for the broad searcher who wants a React Markdown editor but actually needs a product-ready writing surface.

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 Editor() {
  const editor = useEditor();
  return <NoteloomEditor editor={editor} />;
}

What to try live

Open the playground, type /, and build a structured document without a CMS.