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