Liquid Filter Reference for ceil - v0.9.5
Filter Name | ceil |
Group | Numbers |
Version | 0.9.5 |
Description
Rounds an input up to the nearest whole number. Liquid tries to convert the input to a number before the filter is applied.
Examples
{{ 1.2 | ceil }}
2
{{ 2.0 | ceil }}
2
{{ 183.357 | ceil }}
184
Here the input value is a string:
{{ "3.5" | ceil }}
4
Back to Liquid Reference for 0.9.5
Back to Documentation