CS-Notes/docs/_style/prism-master/examples/prism-twig.html
2018-12-19 14:09:39 +08:00

35 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h2>Comments</h2>
<pre><code>{# Some comment
on multiple lines
with &lt;html>&lt;/html>
inside #}</code></pre>
<h2>Keywords</h2>
<pre><code>{% if foo %} bar {% endif %}
{% for key, value in arr if value %} {{ do_something() }} {% endfor %}
{% include 'header.html' %}
{% include 'template.html' with {'foo': 'bar'} %}</code></pre>
<h2>Operators</h2>
<pre><code>{{ not a }}
{{ 20 // 7 }}
{{ b b-and c }}
{% if phone matches '/^[\\d\\.]+$/' %} ... {% endif %}</code></pre>
<h2>Twig embedded in HTML</h2>
<pre><code>&lt;div>
{% if foo %}
&lt;p>Foo!&lt;/p>
{% else %}
&lt;p>Not foo...&lt;/p>
{% endif %}</code></pre>
<h2>Known failures</h2>
<p>There are certain edge cases where Prism will fail.
There are always such cases in every regex-based syntax highlighter.
However, Prism dares to be open and honest about them.
If a failure is listed here, it doesnt mean it will never be fixed. This is more of a “known bugs” list, just with a certain type of bug.
</p>
<h3>Tag containing Twig is not highlighted</h3>
<pre><code>&lt;div{% if foo %} class="bar"{% endif %}>&lt;/div></code></pre>