@k100rav/draft-js-fluent-markdown-plugin
v0.1.20
Published
Draft.js Fluent Markdown Plugin
Readme
Draft.js Fluent Markdown Plugin
Just another Draft.js markdown plugin. Online DEMO.

Why this fork exists?
This plugin is forked from the excellent draft-js-fluent-markdown-plugin by makeflow.
It has a single commit to make it compatible with draft-js 0.11 and React 17. This fork will be active until that support is added to the original plugin.
Changes:
- Add support for draft-js 0.11.7 and React 17.
- Based on draft-js-plugins/editor 4.1
Features
- Common inline features like bold, italic, ~~strikethrough~~,
code, link and plain link https://github.com/vilic; and block features like ordered or unordered list, image block, code block, blockquote and horizontal rule. - Carefully handled undo/redo stack, it always pushes the input before performing markdown transform.
- Reasonable character escaping support, you can safely type
**text\***and get text* without being surprised.
Install
yarn add draft-js-fluent-markdown-pluginUsage
import createFluentMarkdownPlugin from 'draft-js-fluent-markdown-plugin';
const PLUGINS = [createFluentMarkdownPlugin()];
<Editor
editorState={...}
onChange={...}
plugins={PLUGINS}
/>License
MIT License.
