projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18b9948
)
Add text transformation template functions.
author
Vincent Batoufflet
<vincent@batoufflet.info>
Sun, 26 Jan 2014 09:28:35 +0000
(10:28 +0100)
committer
spf13
<steve.francia@gmail.com>
Wed, 29 Jan 2014 04:44:23 +0000
(23:44 -0500)
template/bundle/template.go
patch
|
blob
|
history
diff --git
a/template/bundle/template.go
b/template/bundle/template.go
index 1984d0f28fc34a7de67d5c9cd2dc79292dfe9024..fd0df693679897dc34c6e454f74be3e5d3ad1ff8 100644
(file)
--- a/
template/bundle/template.go
+++ b/
template/bundle/template.go
@@
-170,6
+170,9
@@
func NewTemplate() Template {
"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 },
+ "lower": func(a string) string { return strings.ToLower(a) },
+ "upper": func(a string) string { return strings.ToUpper(a) },
+ "title": func(a string) string { return strings.Title(a) },
}
templates.Funcs(funcMap)