The Go language comes with a powerful built-in template engine. In this article I show how to add custom template functions (functions you can call from within a template). In an earlier post I showed one way of creating a web application in Go. There I added support for templates. At its most basic, adding a bundle of templates looks like this: import ( "os" "html/template" ) func main() { // Cre

