round
Rounds a number to the nearest integer or, if a number is passed as an argument, to that number of decimal places.
Input
{{ 1.2 | round }}Output
1Input
{{ 2.7 | round }}Output
3Input
{{ 183.357 | round: 2 }}Output
183.36
    © 2005, 2006 Tobias Luetke
Licensed under the MIT License.
    https://shopify.github.io/liquid/filters/round/