diff --git a/wiki/Templating.md b/wiki/Templating.md index 68a6491..1107fd9 100644 --- a/wiki/Templating.md +++ b/wiki/Templating.md @@ -212,6 +212,19 @@ Example: < Last Quote: #32 ``` +#### `mod` + +Returns int from calculation: `int1 % int2` + +Syntax: `mod ` + +Example: + +``` +# {{ mod 12 10 }} +< 2 +``` + #### `mul` (deprecated: `multiply`) Returns float from calculation: `float1 * float2`