mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-12 08:49:04 +08:00
46 lines
1.6 KiB
Markdown
46 lines
1.6 KiB
Markdown
---
|
||
description: The actually task, without it the task list would be nothing.
|
||
icon: task-line
|
||
---
|
||
|
||
# TaskItem
|
||
[![Version](https://img.shields.io/npm/v/@tiptap/extension-task-item.svg?label=version)](https://www.npmjs.com/package/@tiptap/extension-task-item)
|
||
[![Downloads](https://img.shields.io/npm/dm/@tiptap/extension-task-item.svg)](https://npmcharts.com/compare/@tiptap/extension-task-item?minimal=true)
|
||
|
||
This extension renders a task item list element, which is a `<li>` tag with a `data-type` attribute set to `taskItem`. It also renders a checkbox inside the list element, which updates a `checked` attribute.
|
||
|
||
This extension doesn’t require any JavaScript framework, it’s based on Vanilla JavaScript.
|
||
|
||
## Installation
|
||
```bash
|
||
npm install @tiptap/extension-task-list @tiptap/extension-task-item
|
||
```
|
||
|
||
This extension requires the [`TaskList`](/api/nodes/task-list) node.
|
||
|
||
## Settings
|
||
|
||
### HTMLAttributes
|
||
Custom HTML attributes that should be added to the rendered HTML tag.
|
||
|
||
```js
|
||
TaskItem.configure({
|
||
HTMLAttributes: {
|
||
class: 'my-custom-class',
|
||
},
|
||
})
|
||
```
|
||
|
||
## Keyboard shortcuts
|
||
| Command | Windows/Linux | macOS |
|
||
| --------------- | ------------------ | ------------------ |
|
||
| splitListItem() | `Enter` | `Enter` |
|
||
| sinkListItem() | `Tab` | `Tab` |
|
||
| liftListItem() | `Shift` `Tab` | `Shift` `Tab` |
|
||
|
||
## Source code
|
||
[packages/extension-task-item/](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-task-item/)
|
||
|
||
## Usage
|
||
https://embed.tiptap.dev/preview/Nodes/TaskItem
|