Documentation ¶
Overview ¶
Package pongo2 is a middleware that provides pongo2 template engine for Macaron.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Pongoer ¶
func Pongoer(options ...Options) macaron.Handler
Pongoer is a Middleware that maps a macaron.Render service into the Macaron 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 MACARON_ENV is set to "" or "development" then templates will be recompiled on every request. For more performance, set the MACARON_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. macaron.TemplateFileSystem }
Options represents a struct for specifying configuration options for the Render middleware.
Click to show internal directories.
Click to hide internal directories.