vote up 3 vote down star

What is the easiest way to strip all html/javascript from a string?

flag

2 Answers

vote up 7 vote down check

If you want to strip tags in the python, you can use:

from django.utils.html import strip_tags

strip_tags(string_value)
link|flag
vote up 6 vote down

The striptags template filter.

{{ value|striptags }}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.