Shopify / prettier-plugin-liquid

Prettier Liquid/HTML plugin
https://npm.im/@shopify/prettier-plugin-liquid
MIT License
93 stars 15 forks source link

Fix unnecessary whitespace stripping on liquid html attribute break #102

Closed charlespwd closed 1 year ago

charlespwd commented 1 year ago

Fixes #99

Input:

It should not consider the trailing whitespace of the last attribute to be sensitive
printWidth: 1
<ul {% render 'hi', arg: 1 %}></ul>
<img {% render 'hi', arg: 1 %}>
<self-closing {% render 'hi', arg: 1 %}/>

Output:

It should not consider the trailing whitespace of the last attribute to be sensitive
printWidth: 1
<ul
  {% render 'hi',
    arg: 1
  %}
></ul>
<img
  {% render 'hi',
    arg: 1
  %}
>
<self-closing
  {% render 'hi',
    arg: 1
  %}
/>