package yatwiki import ( "html/template" "net/http" ) func (this *WikiServer) routeFormatting(w http.ResponseWriter, r *http.Request) { pto := DefaultPageTemplateOptions(this.opts) pto.CurrentPageName = "Formatting help" content := `

Formatting help



` pto.Content = template.HTML(content) this.servePageResponse(w, r, pto) }