]> git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/doc/filters/raw.rst
twig implementation
[github/wallabag/wallabag.git] / vendor / twig / twig / doc / filters / raw.rst
1 ``raw``
2 =======
3
4 The ``raw`` filter marks the value as being "safe", which means that in an
5 environment with automatic escaping enabled this variable will not be escaped
6 if ``raw`` is the last filter applied to it:
7
8 .. code-block:: jinja
9
10 {% autoescape true %}
11 {{ var|raw }} {# var won't be escaped #}
12 {% endautoescape %}