blob: 3d7115a68a2bab4599e8ca811cb5d50dd1991545 [file] [log] [blame]
Matthias Andreas Benkard12a57352021-12-28 18:02:04 +01001``verbatim``
2============
3
4The ``verbatim`` tag marks sections as being raw text that should not be
5parsed. For example to put Twig syntax as example into a template you can use
6this snippet:
7
8.. code-block:: html+twig
9
10 {% verbatim %}
11 <ul>
12 {% for item in seq %}
13 <li>{{ item }}</li>
14 {% endfor %}
15 </ul>
16 {% endverbatim %}