> <strong>
HTML tags, and much more (these 3 are just examples)
Is there a filter that I actually render these in Django template, but keep tags escaped.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, there isn’t – if you mark something as
safe, nothing will be escaped. If it’sunsafe, everything will be. There isn’t really way to saythis content is varying degrees of safe– so if you want this, you’ll have to write it yourself.