diff --git a/doc/tags/include.rst b/doc/tags/include.rst index e79a3109c..0882cc676 100644 --- a/doc/tags/include.rst +++ b/doc/tags/include.rst @@ -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 }}