Docs
Soft Break
Soft Break
Insert line breaks within a block of text without starting a new block.
Loading...
Installation
npm install @udecode/plate-break
Usage
// ...
import { createSoftBreakPlugin } from '@udecode/plate-break';
const plugins = [
// ...otherPlugins,
createSoftBreakPlugin({
options: {
rules: [
{ hotkey: 'shift+enter' },
{
hotkey: 'enter',
query: {
allow: [ELEMENT_CODE_BLOCK, ELEMENT_BLOCKQUOTE, ELEMENT_TD],
},
},
],
},
}),
];
Keyboard Interactions
Key | Description |
---|---|
Shift + Enter | Insert a line break within a block of text without starting a new block. |
API
createSoftBreakPlugin
Options
Collapse all
An array of rule objects specifying the hotkey to activate the soft break and an optional filter query.