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
html code
<quill-editor ref="myTextEditor" v-model="content"></quill-editor>
js code
<script> export default { data() { return { name: 'example', content: '<p> Example</p>' } } </script>
But the editor will trim the space before ' Example', How to prevent quill editor trim white space?
The text was updated successfully, but these errors were encountered:
pasteHTML
<p> Example </p>
white-space: normal;
quill Issues links: slab/quill#1751 slab/quill#1752 slab/quill#996
Sorry, something went wrong.
Add this to styles.css
.ql-editor { white-space: normal!important; }
No branches or pull requests
Example code here
html code
js code
But the editor will trim the space before ' Example',
How to prevent quill editor trim white space?
The text was updated successfully, but these errors were encountered: