harrydeluxe / php-liquid

A PHP port of Ruby's Liquid Templates
http://www.delacap.com/artikel/Liquid-Templates/
MIT License
239 stars 119 forks source link

Unkown tag continue #29

Closed kvz closed 7 years ago

kvz commented 8 years ago

It seems continue is not supported? Use case:

  {% for plan in site.data.public_plans %}
    {% if plan[1].slug == "sandbox" and showSandboxPlan == false %}
      {% continue %}
    {% endif %}
  {% endfor %}
usamaejaz commented 8 years ago

It will be good to have support for continue

NathanBaulch commented 7 years ago

Implemented here.

kvz commented 7 years ago

🎉