mblode / vscode-twig-language

VS Code extension with snippets, syntax highlighting, hover, and formatting for Twig.
https://marketplace.visualstudio.com/items?itemName=mblode.twig-language
MIT License
42 stars 7 forks source link

Block inside tag wrong format #48

Open dzpt opened 4 years ago

dzpt commented 4 years ago

If i put block place inside html tag

<div class="container-fluid pt-3 pb-3">
  {% block body %}{% endblock %}
</div>

It would be formatted to this

<div class="container-fluid pt-3 pb-3"> {% block body %}{% endblock %}
    </div>