Hacker News new | ask | show | jobs
by tyleregeto 4395 days ago
This hardly even talks about the templating package in Go, which is really good. They have found a nice balance between ease of use and functionality.

It reads a lot like mustache, but has the power of a language that allows you to mix markup and code. Its worth checking out in more detail.

1 comments

Can you recommend a good document explaining all the features? The main package doc on golang.org seems to not really go into stuff like conditionals, loops, etc. which I gather are possible.
That is documented in text/template.
Wow. I feel like an idiot for not finding that. Thank you!