Added toUpper and toLower formatting to templates

This commit is contained in:
Dmitry Ulianov 2016-08-15 14:00:22 +03:00
parent 289e299eb5
commit a8619111f3
2 changed files with 12 additions and 0 deletions

View File

@ -150,6 +150,8 @@ func NewTemplateExpander(text string, name string, data interface{}, timestamp m
},
"match": regexp.MatchString,
"title": strings.Title,
"toUpper": strings.ToUpper,
"toLower": strings.ToLower,
"graphLink": strutil.GraphLinkForExpression,
"tableLink": strutil.TableLinkForExpression,
"sortByLabel": func(label string, v queryResult) queryResult {

View File

@ -164,6 +164,16 @@ func TestTemplateExpansion(t *testing.T) {
text: "{{ \"aa bb CC\" | title }}",
output: "Aa Bb CC",
},
{
// toUpper.
text: "{{ \"aa bb CC\" | toUpper }}",
output: "AA BB CC",
},
{
// toLower.
text: "{{ \"aA bB CC\" | toLower }}",
output: "aa bb cc",
},
{
// Match.
text: "{{ match \"a+\" \"aa\" }} {{ match \"a+\" \"b\" }}",