2.0 KiB
2.0 KiB
TextAlign
This extension adds a text align attribute to a specified list of nodes. The attribute is used to align the text.
Installation
# with npm
npm install @tiptap/extension-text-align
# with Yarn
yarn add @tiptap/extension-text-align
Settings
| Option | Type | Default | Description |
|---|---|---|---|
| types | Array |
['heading', 'paragraph'] |
A list of nodes where the text align attribute should be applied to. |
| alignments | Array |
['left', 'center', 'right', 'justify'] |
A list of available options for the text align attribute. |
| defaultAlignment | String |
'left' |
The default text align. |
Commands
| Command | Parameters | Description |
|---|---|---|
| textAlign | alignment | Set the text align to the specified value. |
Keyboard shortcuts
Windows/Linux
CtrlShiftLLeftCtrlShiftECenterCtrlShiftRRightCtrlShiftJJustify
macOS
CmdShiftLLeftCmdShiftECenterCmdShiftRRightCmdShiftJJustify
Source code
packages/extension-text-align/