2014년 11월2016년 10월2018년 9월2020년 9월2022년 8월2024년 8월2026년 7월
아티팩트npmnpm install dante
README
Dante
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.
What you get
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
Install
npm install dante3
Basic usage
import DanteEditor from "dante3";
export default function Example() {
return <DanteEditor bodyPlaceholder="Write the next section" />;
}