去模板的例子

什么网站有一些很好的,使用Go html /模板的最新资源,尤其是在parsingHTML文件和处理列表? 我遇到了Hoka Poka网站 ,但似乎已经过时了。

Google App Engine文档有一个简单的例子,展示了如何使用template来渲染带有range列表。

对于“html / template”, http://code.google.com/p/go/source/browse/src/pkg/html/template/doc.go#83上的文档中有模板代码片段;

上下文

假设{{。}}是O'Reilly: How are <i>you</i>? ,下表显示了在左侧的上下文中{{。}}的使用方式。

 Context {{.}} After {{.}} O'Reilly: How are &lt;i&gt;you&lt;/i&gt;? <a title='{{.}}'> O&#39;Reilly: How are you? <a href="/{{.}}"> O&#39;Reilly: How are %3ci%3eyou%3c/i%3e? 

testing套件有很多例子: https : //code.google.com/p/go/source/browse/src/html/template/escape_test.go

要查看模板,请查看godoc源代码。 http://code.google.com/p/go/source/browse/src/cmd/godoc/godoc.go#642是一个很好的起点。;