Fix include documentation - change filter tag to apply

This commit is contained in:
tkm
2020-11-09 15:08:48 +02:00
parent ff3045289b
commit 752bcc7be6
+3 -3
View File
@@ -31,10 +31,10 @@ of that file:
{# vs #}
{% set content = include('template.html') %}
{# Filter a rendered template #}
{% filter upper %}
{# Apply filter on a rendered template #}
{% apply upper %}
{% include 'template.html' %}
{% endfilter %}
{% endapply %}
{# vs #}
{{ include('template.html')|upper }}