class Liquid::Continue

Continue tag to be used to break out of a for loop.

Basic Usage:

{% for item in collection %}
  {% if item.condition %}
    {% continue %}
  {% endif %}
{% endfor %}