mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-04 11:49:02 +08:00
1.7 KiB
1.7 KiB
TaskList
This extension enables you to use task lists in the editor. They are rendered as <ul data-type="taskList">
. This implementation doesn’t require any framework, it’s using Vanilla JavaScript only.
Type [ ]
or [x]
at the beginning of a new line and it will magically transform to a task list.
Installation
# with npm
npm install @tiptap/extension-task-list @tiptap/extension-task-item
# with Yarn
yarn add @tiptap/extension-task-list @tiptap/extension-task-item
This extension requires the TaskItem
extension.
Settings
HTMLAttributes
Custom HTML attributes that should be added to the rendered HTML tag.
TaskList.configure({
HTMLAttributes: {
class: 'my-custom-class',
},
})
Commands
Command | Parameters | Description |
---|---|---|
taskList | — | Toggle a task list. |
Keyboard shortcuts
Command | Windows/Linux | macOS |
---|---|---|
toggleTaskList() | Control Shift 9 |
Cmd Shift 9 |