package tpl
import "github.com/gohugoio/hugo/tpl"
Index ¶
- type Template
- type TemplateAdapter
- func (t *TemplateAdapter) ExecuteToString(data interface{}) (string, error)
- func (t *TemplateAdapter) Tree() string
- type TemplateDebugger
- type TemplateExecutor
- type TemplateFinder
- type TemplateFuncsGetter
- type TemplateHandler
- type TemplateTestMocker
Types ¶
type Template ¶
Template is the common interface between text/template and html/template.
type TemplateAdapter ¶
type TemplateAdapter struct { Template }
TemplateAdapter implements the TemplateExecutor interface.
func (*TemplateAdapter) ExecuteToString ¶
func (t *TemplateAdapter) ExecuteToString(data interface{}) (string, error)
ExecuteToString executes the current template and returns the result as a string.
func (*TemplateAdapter) Tree ¶
func (t *TemplateAdapter) Tree() string
Tree returns the template Parse tree as a string. Note: this isn't safe for parallel execution on the same template vs Lookup and Execute.
type TemplateDebugger ¶
type TemplateDebugger interface {
Debug()
}
TemplateDebugger prints some debug info to stdoud.
type TemplateExecutor ¶
type TemplateExecutor interface { Template ExecuteToString(data interface{}) (string, error) Tree() string }
TemplateExecutor adds some extras to Template.
type TemplateFinder ¶
type TemplateFinder interface { Lookup(name string) *TemplateAdapter }
TemplateFinder finds templates.
type TemplateFuncsGetter ¶
type TemplateFuncsGetter interface { GetFuncs() map[string]interface{} }
type TemplateHandler ¶
type TemplateHandler interface { TemplateFinder AddTemplate(name, tpl string) error AddLateTemplate(name, tpl string) error LoadTemplates(absPath, prefix string) PrintErrors() MarkReady() RebuildClone() }
TemplateHandler manages the collection of templates.
type TemplateTestMocker ¶
type TemplateTestMocker interface { SetFuncs(funcMap map[string]interface{}) }
TemplateTestMocker adds a way to override some template funcs during tests. The interface is named so it's not used in regular application code.
Source Files ¶
Directories ¶
- Version
- v0.25.1
- Published
- Jul 10, 2017
- Platform
- windows/amd64
- Imports
- 5 packages
- Last checked
- 25 minutes ago –
Tools for package owners.