class Liquid::Continue

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 %}

Defined in:

liquid/tags/continue.cr

Instance Method Summary

Instance methods inherited from class Liquid::Tag

name name, nodelist : Array(Liquid::Tag | Liquid::Variable | String) nodelist, nodelist=(nodelist : Array(Liquid::Tag | Liquid::Variable | String)) nodelist=, parse(tokens) parse, render(context) render

Constructor methods inherited from class Liquid::Tag

new(tag_name : String, markup : String, tokens) new

Instance Method Detail

def interrupt #

[View source]