| Class | Liquid::Continue |
| In: |
lib/liquid/tags/continue.rb
|
| Parent: | Tag |
Continue tag to be used to break out of a for loop.
{% for item in collection %}
{% if item.condition %}
{% continue %}
{% endif %}
{% endfor %}