1.0.1 • Published 2 years ago

@draft-js-enhance-plugins/soft-newline v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

DraftJS Soft Newline Plugin

This is a plugin for the @draft-js-plugins/editor.

Feature

Press tab+enter to insert soft newline. No new unstyled block will be created.

Refer to insertSoftNewline.

Usage

import { EditorState } from 'draft-js';
import Editor from '@draft-js-plugins/editor';
import createSoftNewlinePlugin from '@draft-js-enhance-plugins/soft-newline';

const softNewlinePlugin = createSoftNewlinePlugin();

const plugins = [softNewlinePlugin];

function Example() {
  const [editorState, setEditorState] = useState(EditorState.createEmpty());

  return (
    <Editor
      editorState={editorState}
      onChange={setEditorState}
      plugins={plugins}
    />
  );
}