I wrote a html whitelist filter that only allows predefined tags, and runs however many filters you want to specify on it.
I'd be curious what you guys thought about it. http://sourceforge.net/projects/htmlfilterfacto/ On Dec 11, 2:51 pm, Shawn Milochik <sh...@milochik.com> wrote: > Look at safestring. > > from django.utils import safestring > > The docs will explain all, but basically you do this: > > the_html = safestring.mark_safe(your_html) > > The text in "the_html," if passed in your template, will not be escaped. The > standard warning should be repeated here -- be sure you trust your users, or > take measures to prevent the insertion of scripting before you allow anything > they enter to be displayed. > > Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.