yosssi / ace

HTML template engine for Go
MIT License
835 stars 89 forks source link

Add function to template #49

Closed audreylim closed 9 years ago

audreylim commented 9 years ago

Is it possible to add functions to the template generated by ace? http://golang.org/pkg/html/template/#Template.Funcs

yosssi commented 9 years ago

Yes, set template.FuncMap to the ace.Options's FuncMap. http://godoc.org/github.com/yosssi/ace#Options

audreylim commented 9 years ago

Thanks!