mirror of
https://github.com/kemko/liquid.git
synced 2026-01-07 02:35:40 +03:00
591 B
591 B
title, description
| title | description |
|---|---|
| plus | Liquid filter that adds a number to another number. |
Adds a number to another number.
Input
```liquid {% raw %} {{ 4 | plus: 2 }} {% endraw %} ```Output
```text {{ 4 | plus: 2 }} ```Input
```liquid {% raw %} {{ 16 | plus: 4 }} {% endraw %} ```Output
```text {{ 16 | plus: 4 }} ```Input
```liquid {% raw %} {{ 183.357 | plus: 12 }} {% endraw %} ```Output
```text {{ 183.357 | plus: 12 }} ```