A Liquid syntax template engine for Swift.
- Comment
- Raw
- Truthy and falsy
- Whitespace control
- Filters
- Variable
-
assign -
capture -
increment -
decrement
-
- Operators
-
==equals -
!=does not equal -
>greater than -
<less than -
>=greater than or equal to -
<=less than or equal to -
orlogical or -
andlogical and -
containschecks substring inside a string
-
- Control flow
-
ifif a certain condition is true -
unlessif a certain condition is not met -
elsifmore conditions -
elseelse conditions -
case/whenswitch statement
-
- Iteration
-
for -
break -
continue -
limitlimits the loop (for parameters) -
offsetbegins the loop at the specified index (for parameters) -
rangedefines a range of numbers to loop through -
reversedreverses the order of the loop
-
- Default Filter