内置的“ html / template”或“ mustache”,我应该使用哪一个? [关闭]

I'm new to golang, and want to use it to build a web app.

I found it has built-in html/template, which can render html template with specified data, and there is also a mustache port which seems good.

I'm not sure which one shall I use. Please give me some advices or comparations between them to let me decide, thank you.

I prefer use html/template because it comes in Go library, and by its simple design.

You can see in the next web application how powerfull it is:

https://bitbucket.org/jzs/sketchground/src

I prefer html/template. Its simple to use. The codewalk here http://golang.org/doc/articles/wiki/ can be a start.