What is the easiest way to strip all html/javascript from a string?
+16
A:
If you want to strip tags in the python, you can use:
from django.utils.html import strip_tags
strip_tags(string_value)
Eldila
2009-05-18 23:15:37