harttle/liquidjs

Order of `else` and `elsif` blocks

jg-rp opened this issue · 1 comments

Hi,

Related to #670 and #671, Shopify/Liquid will silently ignore any {% elsif %} tags after the first {% else %}.

Example template

{% if false %}a{% else %}b{% elsif true %}c{% endif %}

Shopify/Liquid output

b

LiquidJS output

c