Liquid
Basics
Introduction
Operators
Truthy and falsy
Types
Variations of Liquid
Whitespace control
Tags
Control flow
Iteration
Template
Variable
Filters
date
default
escape
escape_once
url_decode
url_encode
Array filters
compact
concat
first
join
last
map
reverse
size
sort
sort_natural
split
uniq
where
Math filters
abs
at_least
at_most
ceil
divided_by
floor
minus
modulo
plus
round
times
String filters
append
capitalize
downcase
lstrip
newline_to_br
prepend
remove
remove_first
replace
replace_first
rstrip
slice
strip
strip_html
strip_newlines
truncate
truncatewords
upcase
Menu
at_most
Limits a number to a maximum value.
Input
{{
4
|
at_most
:
5
}}
{{
4
|
at_most
:
3
}}
Output
4 3