Task List
Create a checklist with interactive checkboxes.
Setup
Start with the packages in Getting Started. This complete example registers the feature and renders its UI. In an existing editor, merge the imports and extension entries into your setup, and place the controls inside your existing RichTextProvider.
tsx
'use client';
import { EditorContent, useEditor } from '@tiptap/react';
import { Document } from '@tiptap/extension-document';
import { Paragraph } from '@tiptap/extension-paragraph';
import { Text } from '@tiptap/extension-text';
import { RichTextProvider } from 'reactjs-tiptap-editor';
import { TaskList, RichTextTaskList } from 'reactjs-tiptap-editor/tasklist';
import 'reactjs-tiptap-editor/style.css';
const extensions = [Document, Paragraph, Text, TaskList];
export default function TaskListExample() {
const editor = useEditor({
extensions,
content: '<p>Try this feature here.</p>',
immediatelyRender: false,
});
if (!editor) return null;
return (
<RichTextProvider editor={editor}>
<RichTextTaskList />
<EditorContent editor={editor} />
</RichTextProvider>
);
}How to use
The library’s TaskList includes TaskItem; do not register another task-item extension. Click the toolbar button to create a checklist and click a checkbox to change its checked state. Use TaskList.configure({ taskItem: { nested: true } }) to allow nested tasks.
Options
shortcutKeys
Type: string[]
Default: ['shift', 'mod', '9']
Shortcut labels shown by the controls. See keyboard shortcut configuration to change actual key bindings.

Hung Hoang
Condor Hero