Soft Break

Insert line breaks within a block of text without starting a new block.

Soft Break

Customize how soft breaks (line breaks within a paragraph) are handled using configurable rules
  • hotkey – Use hotkeys like ⇧⏎ to insert a soft break anywhere within a paragraph.
  • query – Define custom rules to limit soft breaks to specific block types.
Try here ⏎
And here ⏎ as well.
Files
components/demo.tsx
'use client';

import React from 'react';

import { Plate } from '@udecode/plate-common/react';

import { editorPlugins } from '@/components/editor/plugins/editor-plugins';
import { useCreateEditor } from '@/components/editor/use-create-editor';
import { Editor, EditorContainer } from '@/components/plate-ui/editor';

import { DEMO_VALUES } from './values/demo-values';

export default function Demo({ id }: { id: string }) {
  const editor = useCreateEditor({
    plugins: [...editorPlugins],
    value: DEMO_VALUES[id],
  });

  return (
    <Plate editor={editor}>
      <EditorContainer variant="demo">
        <Editor />
      </EditorContainer>
    </Plate>
  );
}