⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
cwpsrv
/
var
/
services
/
twig
/
doc
/
filters
/
View File Name :
raw.rst
``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: .. code-block:: jinja {% autoescape %} {{ var|raw }} {# var won't be escaped #} {% endautoescape %} .. note:: Be careful when using the ``raw`` filter inside expressions: .. code-block:: jinja {% autoescape %} {% set hello = '<strong>Hello</strong>' %} {% set hola = '<strong>Hola</strong>' %} {{ false ? '<strong>Hola</strong>' : hello|raw }} does not render the same as {{ false ? hola : hello|raw }} but renders the same as {{ (false ? hola : hello)|raw }} {% endautoescape %} The first ternary statement is not escaped: ``hello`` is marked as being safe and Twig does not escape static values (see :doc:`escape<../tags/autoescape>`). In the second ternary statement, even if ``hello`` is marked as safe, ``hola`` remains unsafe and so is the whole expression. The third ternary statement is marked as safe and the result is not escaped.