Documentation ¶
Index ¶
Constants ¶
View Source
const ( ContentType = "Content-Type" ContentLength = "Content-Length" ContentBinary = "application/octet-stream" ContentJSON = "application/json" ContentHTML = "text/html" ContentXHTML = "application/xhtml+xml" ContentXML = "text/xml" )
Variables ¶
This section is empty.
Functions ¶
func Pongoer ¶
Pongoer is a Middleware that maps a seago.Render service into the Seago handler chain. An single variadic pongo2.Options struct can be optionally provided to configure HTML rendering. The default directory for templates is "templates" and the default file extension is ".tmpl" and ".html".
If SEAGO_ENV is set to "" or "development" then templates will be recompiled on every request. For more performance, set the SEAGO_ENV environment variable to "production".
Types ¶
type Options ¶
type Options struct { // Directory to load templates. Default is "templates" Directory string // Extensions to parse template files from. Defaults to [".tmpl", ".html"] Extensions []string // Appends the given charset to the Content-Type header. Default is "UTF-8". Charset string // Outputs human readable JSON IndentJSON bool // Outputs human readable XML IndentXML bool // Prefixes the JSON output with the given bytes. PrefixJSON []byte // Prefixes the XML output with the given bytes. PrefixXML []byte // Allows changing of output to XHTML instead of HTML. Default is "text/html" HTMLContentType string // TemplateFileSystem is the interface for supporting any implmentation of template file system. seago.TemplateFileSystem }
Options represents a struct for specifying configuration options for the Render middleware.
Click to show internal directories.
Click to hide internal directories.