{# Comment #}
{# Unindented without and with HTML indentation#}
{% block blockname %}
TestText1
{% for foo in bar %}
{% if condition %}
{% else %}
TestText3
{% endif %}
{% endfor %}
{% endblock %}
{# On the same line #}
{% set name = value %} {% include "file" with context only %} {% extends "file" %}
{# Indented wrong #}
{% parent %}
{% import "file" as varname %}
{% macro name args %}
TestText4
{% endmacro %}
{% tag %}
TestText5
{% end %}
{% autoescape on "js" %}
TestText6
{% endautoescape %}