summaryrefslogtreecommitdiff
path: root/funcs.go
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2017-10-14 13:51:01 -0400
committerDave Henderson <dhenderson@gmail.com>2017-10-30 22:18:37 -0400
commit90ca86ec9c3db804ac32ef942fa04a0aa8c133e7 (patch)
tree5295f93799d77f8fc0eb5ed3199fd41b858b0d6e /funcs.go
parent4e626fdfc870c212c73e5b9494f63888e570f8ac (diff)
Adding math functions
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'funcs.go')
-rw-r--r--funcs.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/funcs.go b/funcs.go
index 28bfc907..00967511 100644
--- a/funcs.go
+++ b/funcs.go
@@ -19,5 +19,6 @@ func initFuncs(d *data.Data) template.FuncMap {
funcs.AddEnvFuncs(f)
funcs.AddConvFuncs(f)
funcs.AddTimeFuncs(f)
+ funcs.AddMathFuncs(f)
return f
}