1.0.1 • Published 2 years ago

@draft-js-enhance-plugins/inline-code v1.0.1

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

DraftJS Inline Code Plugin

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

Feature

  • Selection always enclosed with spaces

  • Automatically remove inline styles except CODE style

TODO

  • Custom the customStyleMap

Usage

import { EditorState } from 'draft-js';
import Editor from '@draft-js-plugins/editor';
import createInlineCodePlugin from '@draft-js-enhance-plugins/inline-code';

const inlineCodePlugin = createInlineCodePlugin();

const plugins = [inlineCodePlugin];

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

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