From 9564e6e9d8b889ddf29a777af12492a5d2560501 Mon Sep 17 00:00:00 2001 From: spf13 Date: Wed, 22 Jan 2014 17:06:23 -0500 Subject: [PATCH] Adding support for some primitive template math functions --- template/bundle/template.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/template/bundle/template.go b/template/bundle/template.go index 98a3920d..1984d0f2 100644 --- a/template/bundle/template.go +++ b/template/bundle/template.go @@ -164,6 +164,12 @@ func NewTemplate() Template { "safeHtml": SafeHtml, "first": First, "highlight": Highlight, + "add": func(a, b int) int { return a + b }, + "sub": func(a, b int) int { return a - b }, + "div": func(a, b int) int { return a / b }, + "mod": func(a, b int) int { return a % b }, + "mul": func(a, b int) int { return a * b }, + "modBool": func(a, b int) bool { return a%b == 0 }, } templates.Funcs(funcMap) -- 2.30.2