noteloom
← All features

Math-ready writing

Markdown LaTeX editor

Use noteloom as a structured React editor for technical writing, with code blocks, embeds, inline widgets, and a clean path for adding custom LaTeX blocks.

Why this deserves its own page

LaTeX searches usually come from technical writers who need math, prose, code, and exportable structure in the same document.

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, registerBuiltInBlocks } from 'noteloom';

function TechnicalEditor({ latexBlockType }) {
  const editor = useEditor({
    registerBlocks: (registry) => {
      registerBuiltInBlocks(registry);
      registry.register('latex', latexBlockType);
    },
  });

  return <NoteloomEditor editor={editor} />;
}

What to try live

Start with code and embed blocks today, then register a custom LaTeX block for your own renderer.