djlint / djLint

✨ HTML Template Linter and Formatter. Django - Jinja - Nunjucks - Handlebars - GoLang
https://djLint.com
GNU General Public License v3.0
664 stars 81 forks source link

[BUG] [Formatter] line breaks in inline tags lead to over-indentation of following lines #834

Open stefanor opened 3 months ago

stefanor commented 3 months ago

System Info

Issue

Inline <a> tags with a wrap in them seem to confuse the formatter and lead to the following lines being over-indented.

How To Reproduce

<p>
  <a>b
    c</a> d
</p>

$ djlint --format example.html

example.html
─────────────────────────────────────────────────────────────────────────────────────────────
@@ -1,4 +1,4 @@

 <p>
   <a>b
     c</a> d
-</p>
+  </p>

1 file would be updated.