Delta to HTML? #4604
-
|
Is there a function that can be used to convert Delta to HTML? I want to convert delta stored from database and convert it directly to HTML for viewing. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
There's a library for it. https://www.npmjs.com/package/quill-delta-to-html I used Quilljs before. I know this was possible, I just forgot that I used a separate library for it. I thought it was a builtin function. |
Beta Was this translation helpful? Give feedback.
-
|
I'm able to extract HTML with this: variableToHoldTheHTMLstring = quill.getSemanticHTML() |
Beta Was this translation helpful? Give feedback.
There's a library for it. https://www.npmjs.com/package/quill-delta-to-html
I used Quilljs before. I know this was possible, I just forgot that I used a separate library for it. I thought it was a builtin function.