diff --git a/providers/http/http.go b/providers/http/http.go index 44ee2cd..0b1c630 100644 --- a/providers/http/http.go +++ b/providers/http/http.go @@ -21,11 +21,13 @@ func (this *Provider) Package () string { // FuncMap fulfills the step.FuncProvider interface. func (this *Provider) FuncMap () template.FuncMap { return template.FuncMap { - "statusText": http.StatusText, - "parseQuery": funcParseQuery, - "parseForm": funcParseForm, - "error": funcError, - "redirect": funcRedirect, + "statusText": http.StatusText, + "parseQuery": funcParseQuery, + "parseForm": funcParseForm, + "error": funcError, + "redirect": funcRedirect, + "queryEscape": url.QueryEscape, + "queryUnescape": url.QueryUnescape, } }