mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 02:05:41 +03:00
607 B
607 B
title, description
| title | description |
|---|---|
| minus | Liquid filter that subtracts one number from another. |
Subtracts a number from another number.
Input
```liquid {% raw %} {{ 4 | minus: 2 }} {% endraw %} ```Output
```text {{ 4 | minus: 2 }} ```Input
```liquid {% raw %} {{ 16 | minus: 4 }} {% endraw %} ```Output
```text {{ 16 | minus: 4 }} ```Input
```liquid {% raw %} {{ 183.357 | minus: 12 }} {% endraw %} ```Output
```text {{ 183.357 | minus: 12 }} ```