mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 18:25:41 +03:00
397 B
397 B
title, description
| title | description |
|---|---|
| at_most | Liquid filter that limits a number to a maximum value |
Limits a number to a maximum value.
Input
{% raw %} ```liquid {{ 4 | at_most: 5 }} ``` {% endraw %}Output
``` 4 ```Input
{% raw %} ```liquid {{ 4 | at_most: 3 }} ``` {% endraw %}Output
``` 3 ```