Hi All,
I want to add a new filter names 'noescape' to django template. After that,
{{ <context variable>|noescape }}
will output the context variable without auto escape.
It will be more convenient than
{% autoescape off %}{{ <context variable> }} {% endautoescape %}
Thanks and regards,
Hans