Overview of LiquidJS tags
masterLiquidJS implements a wide range of tags used for template logic, following the specification used by shopify/liquid. These tags are categorized by their primary function:
- Iteration: Used to iterate over collections (e.g.,
for,cycle,tablerow). - Control Flow: Used to control the execution branches of template rendering (e.g.,
if,unless,elsif,else,case,when). - Variable: Used to define or alter variables (e.g.,
assign,increment,decrement,capture,echo). - File: Used to include other templates or extend layout templates (e.g.,
render,include,layout). - Language: Used to temporarily disable LiquidJS syntax (e.g.,
#,raw,comment,liquid).