summernote / react-summernote

Summernote (Super simple WYSIWYG editor) adaptation for react
http://summernote.org
MIT License
230 stars 108 forks source link

Adding summernote plugins through props #120

Closed nerdess closed 1 year ago

nerdess commented 1 year ago

What is the recommended way to add summernote plugins in react-summernote?

I can add them if I include them directly in the reacts-summernote code (inside Summernote.jsx) and rebuild the whole package like so:

import 'summernote/dist/summernote';
import 'summernote/dist/summernote.css';
import './quotation'; //this is a summernote plugin

But is there a way to add plugins through the props?

nerdess commented 1 year ago

Nevermind, found the solution here: https://github.com/summernote/react-summernote/issues/44#issuecomment-1312806120