draft-js-link-detection-plugin

draft-js-link-detection-plugin

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
draft-js-link-detection-plugin
0.0.43 years ago4 years agoMinified + gzip package size for draft-js-link-detection-plugin in KB

Readme

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}
/>