summaryrefslogtreecommitdiff
path: root/funcs.go
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2017-06-13 22:11:05 -0400
committerGitHub <noreply@github.com>2017-06-13 22:11:05 -0400
commitfc522f1213eb96e23ea9d113591892a26f9f2ec3 (patch)
tree3a9fe080f9cd591532b5788294c13bd002246dd2 /funcs.go
parentbc52886c7cf83bcbd4e4ae96ab4b0e2a84d527e7 (diff)
parent1fbfe779e6758d0f7e9143ea2a00ad050ab8c6aa (diff)
Merge pull request #161 from hairyhenderson/regexp-funcs
Adding regexp support
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 6a1504de..7d38ef22 100644
--- a/funcs.go
+++ b/funcs.go
@@ -54,5 +54,6 @@ func initFuncs(data *Data) template.FuncMap {
funcs.AWSFuncs(f)
funcs.AddBase64Funcs(f)
funcs.AddNetFuncs(f)
+ funcs.AddReFuncs(f)
return f
}