Installation
Novel package doeesn’t have any styles included. It’s just a collection of custom configs and components for Tiptap.Usage
Tailwind
Usage with Tailwind and Shadcn-UI
Custom
Write your own styles using the Novel components
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Start using the editor in 5 minutes
npm i novel
yarn add novel
pnpm add novel
import {
EditorBubble,
EditorBubbleItem,
EditorCommand,
EditorCommandItem,
EditorContent,
EditorRoot,
} from "novel";
export default () => (
<EditorRoot>
<EditorContent>
<EditorCommand>
<EditorCommandItem />
<EditorCommandItem />
<EditorCommandItem />
</EditorCommand>
<EditorBubble>
<EditorBubbleItem />
<EditorBubbleItem />
<EditorBubbleItem />
</EditorBubble>
</EditorContent>
</EditorRoot>
);