noteloom
← All features

Tables

Markdown table editor

Add editable tables to a React writing surface, with typed columns for text, dates, checkboxes, and select values.

Why this deserves its own page

A Markdown table page should answer how rows, columns, cell types, and storage work without sending the reader through a generic editor overview.

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

What to try live

Insert a table from the slash menu and change column types directly in the header.