Feature Request
From #167
Using similar logic to linter rule H025 we can indent the templates using blocks instead of going linearly through the code line by line.
This will also match the settings using the compressor.
This will also allow us to use {% blocktrans trimmed %} tags, and format them.
It will also fix poor formatting like this:
{% if %}
<div>
{% endif %}
{% if %}
</div>
{% endif %}
Feature Request
From #167
Using similar logic to linter rule H025 we can indent the templates using blocks instead of going linearly through the code line by line.
This will also match the settings using the compressor.
This will also allow us to use
{% blocktrans trimmed %}tags, and format them.It will also fix poor formatting like this:
{% if %} <div> {% endif %} {% if %} </div> {% endif %}