We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error:
index.html:36 Uncaught ReferenceError: BlotFormatter is not defined at index.html:36
<link href="resources/quill.snow.css" rel="stylesheet"> <link href="resources/quill-better-table.css" rel="stylesheet"> <script src="resources/quill_2004.min.js"></script> <script src="resources/quill-better-table.min.js"></script> <script src="resources/quill-image-drop-and-paste.min.js"></script> <script src="resources/quill-blot-formatter.min.js"></script> <script src="resources/quill-cursors.min.js"></script> <script> Quill.register('modules/blotFormatter', BlotFormatter); editor = new Quill('#editor', { theme: 'snow', modules: { cursors: true, table: true, toolbar: { container: '#toolbar-container', handlers: { image: image_upload } }, imageDropAndPaste: { handler: image_upload }, blotFormatter: { // displayStyles: { // backgroundColor: 'black', // border: 'none', // color: 'white' // }, // modules: ['Resize', 'DisplaySize', 'Toolbar'] }, } </script>
Thank you!
The text was updated successfully, but these errors were encountered:
How to register the modules using only script tag without import like React??
Sorry, something went wrong.
I believe you will have to export the module and compile it as a js first. Remember to use browserify input.js > output.js.
browserify input.js > output.js
(I gave up on implementing quill because nobody can solve the table issue).
No branches or pull requests
Error:
Thank you!
The text was updated successfully, but these errors were encountered: