2020-10-30 20:19:06 +08:00
# TaskList
2021-01-25 17:35:52 +08:00
[![Version ](https://img.shields.io/npm/v/@tiptap/extension-task-list.svg?label=version )](https://www.npmjs.com/package/@tiptap/extension-task-list)
[![Downloads ](https://img.shields.io/npm/dm/@tiptap/extension-task-list.svg )](https://npmcharts.com/compare/@tiptap/extension-task-list?minimal=true)
2021-06-14 21:27:38 +08:00
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.
2020-11-04 00:05:27 +08:00
Type < code > [ ] < / code > or < code > [x] < / code > at the beginning of a new line and it will magically transform to a task list.
2020-10-30 20:19:06 +08:00
## Installation
```bash
2020-11-04 00:05:27 +08:00
# with npm
2020-10-30 20:19:06 +08:00
npm install @tiptap/extension -task-list @tiptap/extension -task-item
2020-11-04 00:05:27 +08:00
# with Yarn
2020-10-30 20:19:06 +08:00
yarn add @tiptap/extension -task-list @tiptap/extension -task-item
```
2021-02-12 22:02:40 +08:00
This extension requires the [`TaskItem` ](/api/nodes/task-item ) extension.
2020-10-30 20:19:06 +08:00
## Settings
2021-10-02 05:27:39 +08:00
### HTMLAttributes
Custom HTML attributes that should be added to the rendered HTML tag.
```js
TaskList.configure({
HTMLAttributes: {
class: 'my-custom-class',
},
})
```
2020-10-30 20:19:06 +08:00
## Commands
2021-10-02 06:14:44 +08:00
# toggleTaskList()
Toggle a task list.
```js
editor.commands.toggleTaskList()
```
2020-10-30 20:19:06 +08:00
2020-11-19 08:16:10 +08:00
## Keyboard shortcuts
2021-10-02 04:57:27 +08:00
| Command | Windows/Linux | macOS |
| ---------------- | ------------------------------- | --------------------------- |
| toggleTaskList() | `Control` `Shift` `9` | `Cmd` `Shift` `9` |
2020-11-19 08:16:10 +08:00
2020-10-30 20:19:06 +08:00
## Source code
2021-04-21 21:31:11 +08:00
[packages/extension-task-list/ ](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-task-list/ )
2020-10-30 20:19:06 +08:00
## Usage
2021-08-26 05:10:20 +08:00
< tiptap-demo name = "Nodes/TaskList" > < / tiptap-demo >