2020-09-02 21:20:35 +08:00
|
|
|
|
# Paragraph
|
2021-01-25 17:35:52 +08:00
|
|
|
|
[![Version](https://img.shields.io/npm/v/@tiptap/extension-paragraph.svg?label=version)](https://www.npmjs.com/package/@tiptap/extension-paragraph)
|
|
|
|
|
[![Downloads](https://img.shields.io/npm/dm/@tiptap/extension-paragraph.svg)](https://npmcharts.com/compare/@tiptap/extension-paragraph?minimal=true)
|
|
|
|
|
|
2020-09-09 22:16:57 +08:00
|
|
|
|
Yes, the schema is very strict. Without this extension you won’t even be able to use paragraphs in the editor.
|
2020-09-09 22:12:39 +08:00
|
|
|
|
|
2020-09-23 18:03:03 +08:00
|
|
|
|
:::warning Breaking Change from 1.x → 2.x
|
2021-05-07 00:41:22 +08:00
|
|
|
|
tiptap 1 tried to hide that node from you, but it has always been there. You have to explicitly import it from now on (or use `StarterKit`).
|
2020-09-23 18:03:03 +08:00
|
|
|
|
:::
|
|
|
|
|
|
2020-09-23 15:52:04 +08:00
|
|
|
|
## Installation
|
|
|
|
|
```bash
|
2020-10-30 21:24:16 +08:00
|
|
|
|
# with npm
|
2020-09-23 15:52:04 +08:00
|
|
|
|
npm install @tiptap/extension-paragraph
|
|
|
|
|
|
2020-10-30 21:24:16 +08:00
|
|
|
|
# with Yarn
|
2020-09-23 15:52:04 +08:00
|
|
|
|
yarn add @tiptap/extension-paragraph
|
|
|
|
|
```
|
|
|
|
|
|
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-09-09 22:12:39 +08:00
|
|
|
|
|
|
|
|
|
## Commands
|
2020-11-03 23:43:35 +08:00
|
|
|
|
| Command | Parameters | Description |
|
|
|
|
|
| --------- | ---------- | -------------------------------------------- |
|
|
|
|
|
| paragraph | — | Transforms all selected nodes to paragraphs. |
|
2020-09-09 22:12:39 +08:00
|
|
|
|
|
2020-09-10 17:24:33 +08:00
|
|
|
|
## Keyboard shortcuts
|
2021-10-02 04:57:27 +08:00
|
|
|
|
| Command | Windows/Linux | macOS |
|
|
|
|
|
| -------------- | ----------------------------- | ------------------------- |
|
|
|
|
|
| setParagraph() | `Control` `Alt` `0` | `Cmd` `Alt` `0` |
|
2020-09-09 22:12:39 +08:00
|
|
|
|
|
2020-09-21 22:59:28 +08:00
|
|
|
|
## Source code
|
2021-04-21 21:31:11 +08:00
|
|
|
|
[packages/extension-paragraph/](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-paragraph/)
|
2020-09-09 22:12:39 +08:00
|
|
|
|
|
|
|
|
|
## Usage
|
2021-08-26 05:10:20 +08:00
|
|
|
|
<tiptap-demo name="Nodes/Paragraph"></tiptap-demo>
|