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
interrupt()
click to toggle source
# File lib/liquid/tags/continue.rb, line 12 def interrupt ContinueInterrupt.new end