update inbox list
This commit is contained in:
1
vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.expect.txt
vendored
Normal file
1
vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.expect.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
<span class="hljs-template-variable">{{ "string with spaces"|<span class="hljs-keyword">url_encode</span> }}</span>
|
||||
1
vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.txt
vendored
Normal file
1
vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{{ "string with spaces"|url_encode }}
|
||||
12
vendor/scrivo/highlight.php/test/markup/twig/template_tags.expect.txt
vendored
Normal file
12
vendor/scrivo/highlight.php/test/markup/twig/template_tags.expect.txt
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<span class="hljs-template-tag">{% <span class="hljs-name"><span class="hljs-keyword">if</span></span> posts|<span class="hljs-keyword">length</span> %}</span><span class="xml">
|
||||
</span><span class="hljs-template-tag">{% <span class="hljs-name"><span class="hljs-keyword">for</span></span> article in articles %}</span><span class="xml">
|
||||
<span class="hljs-symbol">&lt;</span>div<span class="hljs-symbol">&gt;</span>
|
||||
</span><span class="hljs-template-variable">{{ article.title|<span class="hljs-keyword">upper</span>() }}</span><span class="xml">
|
||||
|
||||
</span><span class="hljs-comment">{# outputs 'WELCOME' #}</span><span class="xml">
|
||||
<span class="hljs-symbol">&lt;</span>/div<span class="hljs-symbol">&gt;</span>
|
||||
</span><span class="hljs-template-tag">{% <span class="hljs-name"><span class="hljs-keyword">endfor</span></span> %}</span><span class="xml">
|
||||
</span><span class="hljs-template-tag">{% <span class="hljs-name"><span class="hljs-keyword">endif</span></span> %}</span><span class="xml">
|
||||
|
||||
</span><span class="hljs-template-tag">{% <span class="hljs-name"><span class="hljs-keyword">set</span></span> user = json_encode(user) %}</span><span class="xml">
|
||||
</span>
|
||||
11
vendor/scrivo/highlight.php/test/markup/twig/template_tags.txt
vendored
Normal file
11
vendor/scrivo/highlight.php/test/markup/twig/template_tags.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{% if posts|length %}
|
||||
{% for article in articles %}
|
||||
<div>
|
||||
{{ article.title|upper() }}
|
||||
|
||||
{# outputs 'WELCOME' #}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% set user = json_encode(user) %}
|
||||
Reference in New Issue
Block a user