Replies: 2 comments 11 replies
-
I have integrated ProseMirror (well, the |
Beta Was this translation helpful? Give feedback.
-
In an internal project we are currently working with TinyMCE for Rich Text editing. It saves to HTML; It's HTML parser sanitizes input when displaying, so that should be safe. This does not prevent users from adding script tags, but anytime I need to display the content, I do it via a TinyMCE editor. If you only want to show the content you can use a read-only TinyMCE editor. In these cases the output is safe. |
Beta Was this translation helpful? Give feedback.
-
I'm working on implementing a rich text editor. Quilljs and Trix seem to be the most popular. But, I need to figure out what to save to the DB and how to render it afterward.
I think the correct way would be to implement a Haskell library to convert the QuillJS-parchment format to HTML, but that isn't very easy. But there are Python/PHP examples.
Any advice is appreciated.
Beta Was this translation helpful? Give feedback.
All reactions