2021-10-14 06:13:50 +08:00
---
description: Adds support for tasks (doesn’ t make sure you actually complete them though).
2021-10-15 03:20:21 +08:00
icon: list-check
2021-10-14 06:13:50 +08:00
---
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
npm install @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
2021-12-11 07:13:24 +08:00
### itemTypeName
Specify the list item name.
Default: `'taskItem'`
```js
TaskList.configure({
itemTypeName: 'taskItem',
})
```
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-10-19 00:01:47 +08:00
https://embed.tiptap.dev/preview/Nodes/TaskList