Try Quill.js. If you google Quill.js and Quill.js Django, I believe you'll find the Django package that goes along with that text editor. Really, you only need the Quill.js code for your template. WYSIWYG is just a user typing in HTML without realizing it. Just save the HTML (because the rest is escaped while the user is typing).
It's also useful if you escape all instances of a script tag in case someone inputs an unescaped <script></script>. Your server wouldn't be destroyed necessarily, but there could be some XSS that you want to avoid. On 2/8/20, john <[email protected]> wrote: > Hi, > > I realize that Django does not have a frontend but is there a > tool/package that works well for WYSIWYG a simple website? > > Johnf > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/da5f5c36-0bca-4a47-d91d-5c67b657c7a5%40jfcomputer.com. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJVmkNnMhBbrjG-stwWor91zRKJyhXL9PfSds7CiPYV-E4hEvA%40mail.gmail.com.

