mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
554 B
554 B
title
| title |
|---|
| modulo |
Returns the remainder of a division operation.
Input
```liquid {% raw %} {{ 3 | modulo: 2 }} {% endraw %} ```Output
```text {{ 3 | modulo: 2 }} ```Input
```liquid {% raw %} {{ 24 | modulo: 7 }} {% endraw %} ```Output
```text {{ 24 | modulo: 7 }} ```Input
```liquid {% raw %} {{ 183.357 | modulo: 12 }} {% endraw %} ```Output
```text {{ 183.357 | modulo: 12 }} ```