g-plane / markup_fmt

Configurable HTML, Vue, Svelte, Astro, Angular, Jinja, Twig, Nunjucks and Vento formatter with dprint integration.
https://dprint.dev/plugins/markup_fmt/
MIT License
100 stars 9 forks source link

Nested Jinja tags aren't formatted correctly #14

Closed g-plane closed 7 months ago

g-plane commented 7 months ago

Input

{% if a %}
a start
{% if b %}
b content
{% endif %}
a end
{% endif %}

Expected Output

{% if a %}
  a start
  {% if b %}
    b content
  {% endif %}
  a end
{% endif %}

Actual Output

{% if a %}
  a start
{% if b %}
    b content
  {% endif %}
  a end
{% endif %}

dprint playground