From 81d2eefc11ecbe64011fa8b5f7e93759b83f0a2f Mon Sep 17 00:00:00 2001 From: Mike Bridge Date: Mon, 30 Mar 2015 22:23:48 -0600 Subject: [PATCH] Updated Liquid for Designers (markdown) --- Liquid-for-Designers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Liquid-for-Designers.md b/Liquid-for-Designers.md index 286a80a..4c862ae 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -85,6 +85,8 @@ Here is a list of currently supported tags: * **comment** - Block tag, comments out the text in the block * **cycle** - Cycle is usually used within a loop to alternate between values, like colors or DOM classes. * **for** - For loop +* **break** - Exits a for loop +* **continue** Skips the remaining code in the current for loop and continues with the next loop * **if** - Standard if/else block * **include** - Includes another template; useful for partials * **raw** - temporarily disable tag processing to avoid syntax conflicts.