Shopify / prettier-plugin-liquid

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

Prettier Liquid: `for`, `tablerow` #64

Closed charlespwd closed 2 years ago

charlespwd commented 2 years ago

Note: the syntax does not support commas. So it's slightly different. What we'll do is we'll parse them but strip them on output.

It's the same syntax but different accepted args (tablerow also has col).

Decisions

Making a slack poll for this one because I'm not sure...

{% # printWidth: 1 %}
{% for location in product.metafields.information.pickup_locations.value
  reversed
  limit: 10
  offset: 10
%}

{% endfor %}
charlespwd commented 2 years ago

image