ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# `verbatim` New in version 1.12: The `verbatim` tag was added in Twig 1.12 (it was named `raw` before). The `verbatim` tag marks sections as being raw text that should not beparsed. For example to put Twig syntax as example into a template you can usethis snippet: <table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre>1 2 3 4 5 6 7</pre></div></td><td class="code"><div class="highlight"><pre>{% verbatim %} &lt;ul&gt; {% for item in seq %} &lt;li&gt;{{ item }}&lt;/li&gt; {% endfor %} &lt;/ul&gt; {% endverbatim %} </pre></div></td></tr></table> Note The `verbatim` tag works in the exact same way as the old `raw` tag,but was renamed to avoid confusion with the `raw` filter.