Shopify Liquid Syntax – What is the difference between {%- assign [some_var] = [some_val] -%} and {% assign [some_var] = [some_val] %}
When coding in Shopify's Liquid language I notice some variables being assigned using the following syntax: {%- assign variable = value -%} and other variables being assigned using the following syntax: {% assign variable = value %} Could someone explain…