quill not displaying
See original GitHub issueNeither the quill-editor or quill-view display anything.
angular v11 ngx-quill v13
package.json
"dependencies": {
"@angular/common": "11.0.0",
"@angular/core": "11.0.0",
"@angular/forms": "11.0.0",
"@angular/platform-browser": "11.0.0",
"ngx-quill": "13.0.0",
"rxjs": "6.3.3",
...
"devDependencies": {
...
"quill": "^1.3.7"
style.scss
@import '~quill/dist/quill.core.css';
...
app.module.ts
imports: [
...
QuillModule.forRoot()
my-component.html
<p>{{faq.answer}}</p>
<quill-view [content]="faq.answer"></quill-view>
<quill-editor [(ngModel)]="faq.answer"></quill-editor>
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Quill text editor is not working - Stack Overflow
You need to initialize the Quill editor after you have created the container ( <div id="editor"> ). On a side note, I would...
Read more >Cannot get html displaying in quill-editor · Issue #404 - GitHub
Quill is using CSS classes dir Styling and mit inline Styling and in it only allows known Formats / Tags. So you cannot...
Read more >How to migrate from Quill editor to TinyMCE
All the aspects and steps of migration from Quill JS to TinyMCE rich text editor in one place.
Read more >How to Customize Quill - Quill Rich Text Editor
Quill is a free, open source WYSIWYG editor built for the modern web. Completely customize it for any need with its modular architecture...
Read more >Quill Editor icons are not working in Laravel - Laracasts
Quill Editor icons are not working in Laravel ... Please take a look at the above image. Quill editor is giving me this...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
hey @KillerCodeMonkey I’ve figured it out. Now it works in my project, the issue was I didn’t import it in whole module hierarchy. the project is really complicated… Thank you for the help!
I only see you importing the core.css, also import the snow.css (snow is the default theme)