blob: 856e969772dc9067ddf02176df2b0b3ccc1fb27c [file] [log] [blame]
Matthias Andreas Benkard12a57352021-12-28 18:02:04 +01001``raw``
2=======
3
4The ``raw`` filter marks the value as being "safe", which means that in an
5environment with automatic escaping enabled this variable will not be escaped
6if ``raw`` is the last filter applied to it:
7
8.. code-block:: twig
9
10 {% autoescape %}
11 {{ var|raw }} {# var won't be escaped #}
12 {% endautoescape %}