0.0.4 • Published 2 years ago

@dizsmek/draft-js-link-detection-plugin v0.0.4

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

draft-js-link-detection-plugin

Demo page

Installation:

npm i draft-js-link-detection-plugin

Usage:

import Editor from 'draft-js-plugins-editor';
import createLinkDetectionPlugin from 'draft-js-link-detection-plugin';

const linkDetectionPlugin = createLinkDetectionPlugin();
const plugins = [linkDetectionPlugin];

<Editor
    ref={editorRef}
    plugins={plugins}
    editorState={editorState}
    onChange={handleChangeEditor}
/>