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

Formatting help



` this.servePageResponse(w, r, pto) }