class Liquid::Continue
- Liquid::Continue
- Liquid::Tag
- Reference
- Object
Overview
Continue tag to be used to break out of a for loop.
== Basic Usage: {% for item in collection %} {% if item.condition %} {% continue %} {% endif %} {% endfor %}