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
91 stars 4 forks source link

Incorrect indent for comments and template literal #50

Closed g-plane closed 3 days ago

g-plane commented 3 weeks ago

Give the code below:

<script>
{
  `First line
   second line`;
}
</script>

or

<script>
{
  /*First line
   second line*/;
}
</script>

They will be incorrectly indented.

Ref: https://github.com/denoland/deno/issues/25259