Quill Editor ignore bullet points.
I 'm using quill editor and is very nice , but it ignore bullet points on loading data from database . I tried to add data in "Content " attribute and it continue to ignore bullet points . Is there someone that can help me figure out why is not considering bullet points ? I 'm talking about the Quill Package . Thank you ! - ๐ฅฐ1
@unicodes
Lucas , what editor do you use ? Since I have my own toolbar , etc But I haven โt gotten complains about it I โll have to look into it I โve also been thinking of migrating to Tiptap editor If I do I may make a package for it It is not clear if you can use the opensource as much as you want , or you have those limitations https://tiptap.dev/pricing Stuff like collaboration and AI are paid Basically saying they don โt support <ul > which is kinda wild and set quill content function setQuillContent (args , ctx ) { const quill = document .getElementById (args .elementId ) ? .quill ; if (quill ) { console .log (quill .getContents ( ) ) ; quill .clipboard .dangerouslyPasteHTML (args .html ) ; } } dangerouslyPasteHTML wouldn 't convert it At least , it doesn 't sound like it would lol And using the clipboard convert to convert things to quill 's thing