patleeman / quill-markdown-shortcuts

Quill.js module that converts markdown to rich text formatting while typing.
https://patleeman.github.io/quill-markdown-shortcuts/
139 stars 49 forks source link

Add Quill as dependency and expose the library as a module #25

Closed p-salmon closed 5 years ago

p-salmon commented 5 years ago

Hi! I am working for Plato and we are using ReactQuill as our text editor. This changes allow us to use the markdown shortcuts module with ReactQuill:

import { Quill } from 'react-quill';
import MarkdownShortcuts from 'quill-markdown-shortcuts';
Quill.register('modules/markdownShortcuts', MarkdownShortcuts);

It solves this issue: https://github.com/patleeman/quill-markdown-shortcuts/issues/21

patleeman commented 5 years ago

I apologize for the delay in merging the previous PR that took care of this issue. I have just released 0.0.7 which should include the UMD module output.

p-salmon commented 5 years ago

Awesome! Thank you for the update!