2020-08-19 03:39:41 +08:00
# BulletList
2021-01-25 17:35:52 +08:00
[![Version ](https://img.shields.io/npm/v/@tiptap/extension-bullet-list.svg?label=version )](https://www.npmjs.com/package/@tiptap/extension-bullet-list)
[![Downloads ](https://img.shields.io/npm/dm/@tiptap/extension-bullet-list.svg )](https://npmcharts.com/compare/@tiptap/extension-bullet-list?minimal=true)
2020-11-03 23:13:13 +08:00
This extension enables you to use bullet lists in the editor. They are rendered as `<ul>` HTML tags.
2020-08-19 03:39:41 +08:00
2020-09-23 18:03:03 +08:00
Type < code > * < / code > , < code > - < / code > or < code > + < / code > at the beginning of a new line and it will magically transform to a bullet list.
2020-09-15 23:26:42 +08:00
2020-09-23 18:03:03 +08:00
## Installation
2020-09-23 15:52:04 +08:00
```bash
2020-10-30 21:24:16 +08:00
# with npm
2020-09-23 18:03:03 +08:00
npm install @tiptap/extension -bullet-list @tiptap/extension -list-item
2020-09-23 15:52:04 +08:00
2020-10-30 21:24:16 +08:00
# with Yarn
2020-09-23 18:03:03 +08:00
yarn add @tiptap/extension -bullet-list @tiptap/extension -list-item
2020-09-23 15:52:04 +08:00
```
2021-02-12 22:02:40 +08:00
This extension requires the [`ListItem` ](/api/nodes/list-item ) node.
2020-09-23 18:03:03 +08:00
## Settings
2020-11-18 19:12:34 +08:00
| Option | Type | Default | Description |
| -------------- | -------- | ------- | --------------------------------------------------------------------- |
| HTMLAttributes | `Object` | `{}` | Custom HTML attributes that should be added to the rendered HTML tag. |
2020-08-19 03:39:41 +08:00
2020-08-20 21:33:16 +08:00
## Commands
2020-11-18 19:12:34 +08:00
| Command | Parameters | Description |
| ---------- | ---------- | --------------------- |
2020-11-04 03:57:09 +08:00
| bulletList | — | Toggle a bullet list. |
2020-08-19 03:39:41 +08:00
2020-09-10 17:24:33 +08:00
## Keyboard shortcuts
2021-10-02 04:57:27 +08:00
| Command | Windows/Linux | macOS |
| ---------------- | ------------------------------- | --------------------------- |
| toggleBulletList | `Control` `Shift` `8` | `Cmd` `Shift` `8` |
2020-08-19 03:39:41 +08:00
2020-09-21 22:59:28 +08:00
## Source code
2021-04-21 21:31:11 +08:00
[packages/extension-bullet-list/ ](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-bullet-list/ )
2020-08-19 03:39:41 +08:00
2020-09-15 22:50:54 +08:00
## Usage
2021-08-26 05:10:20 +08:00
< tiptap-demo name = "Nodes/BulletList" > < / tiptap-demo >