Dante is a block editor and renderer built on top of TipTap and ProseMirror.
This repository contains the dante3 package and the Next.js website that powers the live demo and documentation.
- A React editor surface with configurable blocks, tooltips, and themes
- JSON and HTML content workflows
- Renderer and parser helpers for non-editor surfaces
- Built-in blocks for images, files, embeds, GIFs, dictation, and recorders
npm install dante3import DanteEditor from "dante3";
export default function Example() {
return <DanteEditor bodyPlaceholder="Write the next section" />;
}Run the local demo and docs site:
npm install
npm run devThe site runs on http://localhost:8080.
Build the editor package:
npm run dante3:buildPublish the package from the workspace:
npm run dante3:publishThe public docs are backed by the MDX files in packages/dante3/docs.
MIT