Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 332 Bytes

raw.rst

File metadata and controls

12 lines (9 loc) · 332 Bytes

raw

The raw filter marks the value as being "safe", which means that in an environment with automatic escaping enabled this variable will not be escaped if raw is the last filter applied to it:

{% autoescape %}
    {{ var|raw }} {# var won't be escaped #}
{% endautoescape %}