You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike {% if <expression> %} and {% elsif <expression> %}, {% else %} does not expect an expression (obviously). With Shopify/Liquid, anything between else and the closing tag delimiter (%}) is silently ignored, even in strict mode.
{% iffalse %}1{% else nonsense %}2{% endif %}
Expected output
2
With the same template, Python Liquid will output nonsense2, treating nonsense as part of the else block.
The text was updated successfully, but these errors were encountered:
Unlike
{% if <expression> %}
and{% elsif <expression> %}
,{% else %}
does not expect an expression (obviously). With Shopify/Liquid, anything betweenelse
and the closing tag delimiter (%}
) is silently ignored, even in strict mode.Expected output
With the same template, Python Liquid will output
nonsense2
, treatingnonsense
as part of theelse
block.The text was updated successfully, but these errors were encountered: