Liquid
Liquid processing is powered by LiquidJS.
Front matter
Like Jekyll, front matter variables are accessible via the {{ page }}
variable, e.g. {{ page.thing }}
.
Rudimentary logic
Example:
{% liquid
assign a = 1
assign b = 2
echo a | plus: b %}
Result:
3