2020-08-19 03:39:41 +08:00
# Underline
2020-09-10 18:43:40 +08:00
Use this extension to render text < u > underlined</ u > . If you pass `<u>` tags, or text with inline `style` attributes setting `text-decoration: underline` in the editor’ s initial content, they all will be rendered accordingly.
2020-09-23 18:03:03 +08:00
Be aware that underlined text in the Internet usually indicates that it’ s a clickable link. Don’ t confuse your users with underlined text.
2020-09-10 18:43:40 +08:00
::: warning Restrictions
The extension will generate the corresponding `<u>` HTML tags when reading contents of the `Editor` instance. All text marked underlined, regardless of the method will be normalized to `<u>` HTML tags.
:::
2020-08-19 03:39:41 +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 -underline
2020-10-30 21:24:16 +08:00
# with Yarn
2020-09-23 15:52:04 +08:00
yarn add @tiptap/extension -underline
```
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-03 23:43:35 +08:00
| Command | Parameters | Description |
| --------- | ---------- | ------------------------ |
| underline | — | Mark text as underlined. |
2020-08-19 03:39:41 +08:00
2020-09-10 17:24:33 +08:00
## Keyboard shortcuts
2020-09-27 17:01:25 +08:00
* Windows/Linux: `Control` `U`
* macOS: `Cmd` `U`
2020-08-19 03:39:41 +08:00
2020-09-21 22:59:28 +08:00
## Source code
2020-09-10 18:43:40 +08:00
[packages/extension-underline/ ](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-underline/ )
2020-08-19 03:39:41 +08:00
2020-09-10 18:43:40 +08:00
## Usage
2020-11-03 23:43:35 +08:00
< demo name = "Marks/Underline" highlight = "3-5,17,36" / >