Whitespace Control
Understanding White Space:
{% if product.available %}
<p>In stock</p>
{% else %}
<p>Out of stock</p>
{% endif %}2. White Space Control Techniques:
2.1. Using the hyphen (-)
2.2. Utilizing the 'strip' filter
2.3. Employing the 'strip_newlines' filter:
Summary
Last updated