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 %}
Public Instance Methods
Source
# File lib/liquid/tags/continue.rb, line 12 def interrupt ContinueInterrupt.new end