tiptap/docs/api/nodes/ordered-list.md

57 lines
1.7 KiB
Markdown
Raw Normal View History

---
description: If a bullet list doesnt look serious enough, put some numbers in front of it.
2021-10-15 03:20:21 +08:00
icon: list-ordered
---
2020-08-19 03:39:41 +08:00
# OrderedList
2021-01-25 17:35:52 +08:00
[![Version](https://img.shields.io/npm/v/@tiptap/extension-ordered-list.svg?label=version)](https://www.npmjs.com/package/@tiptap/extension-ordered-list)
[![Downloads](https://img.shields.io/npm/dm/@tiptap/extension-ordered-list.svg)](https://npmcharts.com/compare/@tiptap/extension-ordered-list?minimal=true)
2020-11-03 23:13:13 +08:00
This extension enables you to use ordered lists in the editor. They are rendered as `<ol>` HTML tags.
2020-09-23 18:33:45 +08:00
Type <code>1.&nbsp;</code> (or any other number followed by a dot) at the beginning of a new line and it will magically transform to a ordered list.
2020-08-19 03:39:41 +08:00
2020-09-23 18:03:03 +08:00
## Installation
```bash
2020-10-30 21:24:16 +08:00
# with npm
2020-09-23 18:03:03 +08:00
npm install @tiptap/extension-ordered-list @tiptap/extension-list-item
2020-10-30 21:24:16 +08:00
# with Yarn
2020-09-23 18:03:03 +08:00
yarn add @tiptap/extension-ordered-list @tiptap/extension-list-item
```
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
### HTMLAttributes
Custom HTML attributes that should be added to the rendered HTML tag.
```js
OrderedList.configure({
HTMLAttributes: {
class: 'my-custom-class',
},
})
```
2020-08-19 03:39:41 +08:00
2020-08-20 21:33:16 +08:00
## Commands
2021-10-02 06:14:44 +08:00
### toggleOrderedList()
Toggle an ordered list.
```js
editor.commands.toggleOrderedList()
```
2020-08-19 03:39:41 +08:00
## Keyboard shortcuts
| Command | Windows/Linux | macOS |
| ----------------- | ------------------------------- | --------------------------- |
| toggleOrderedList | `Control`&nbsp;`Shift`&nbsp;`7` | `Cmd`&nbsp;`Shift`&nbsp;`7` |
2020-08-19 03:39:41 +08:00
2020-09-23 18:33:45 +08:00
## Source code
2021-04-21 21:31:11 +08:00
[packages/extension-ordered-list/](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-ordered-list/)
2020-08-19 03:39:41 +08:00
2020-09-23 18:33:45 +08:00
## Usage
2021-10-19 00:01:47 +08:00
https://embed.tiptap.dev/preview/Nodes/OrderedList