1.0.1 • Published 8 years ago

draft-js-lister-plugin v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

draft-js-lister-plugin

Adds support for automatic ul and ol in your draft-js-plugins <Editor />!

kaki

Support

  • Starting a line with - or * and space afterwards, creates a new ul.
  • Starting a line with a <NUMBER>.<SPACE> creates a new ol.
  • Pasting from text editors works too

Installation :hamburger:

npm install --save draft-js-lister-plugin

Usage:

import React from 'react';
import Editor from 'draft-js-plugins-editor';
import createListerPlugin from 'draft-js-lister-plugin';

const listerPlugin = createListerPlugin();

const MyEditor = ({ editorState, onChange }) => (
  <div>
    <Editor
      editorState={ editorState }
      onChange={ onChange }
      plugins={ [listerPlugin] }
    />
    <EmojiSuggestions />
  </div>
);

export default MyEditor;
1.0.1

8 years ago

1.0.0

8 years ago