package ace
import "github.com/yosssi/ace"
Package ace provides an HTML template engine.
Index ¶
- func CompileResult(name string, rslt *result, opts *Options) (*template.Template, error)
- func NewSource(base, inner *File, includes []*File) *source
- func ParseFiles(basePath, innerPath string, opts *Options) (*template.Template, error)
- func ParseSource(src *source, opts *Options) (*result, error)
- type File
- type Options
Functions ¶
func CompileResult ¶
CompileResult compiles the parsed result to the template.Template.
func NewSource ¶
NewSource creates and returns source.
func ParseFiles ¶
ParseFiles parses template files and returns an HTML template.
func ParseSource ¶
ParseSource parses the source and returns the result.
Types ¶
type File ¶
type File struct {
// contains filtered or unexported fields
}
File represents a file.
func NewFile ¶
NewFile creates and returns a file.
type Options ¶
type Options struct { // Extension represents an extension of files. Extension string // DelimLeft represents a left delimiter for the html template. DelimLeft string // DelimRight represents a right delimiter for the html template. DelimRight string // Cache represents a flag which means whether Ace caches the parsed // templates or not. // This option should be true in production. Cache bool // BaseDir represents a base directory of the Ace templates. BaseDir string // Asset loads and returns the asset for the given name. // If this function is set, Ace load the template data from // this function instead of the template files. Asset func(name string) ([]byte, error) // FuncMap represents a template.FuncMap which is set to // the result template. FuncMap template.FuncMap }
Options represents options for the template engine.
Source Files ¶
ace.go action.go comment.go compile.go doc.go element.go element_base.go empty_element.go file.go helper_method_conditional_comment.go helper_method_content.go helper_method_css.go helper_method_doctype.go helper_method_include.go helper_method_javascript.go helper_method_yield.go html_comment.go html_tag.go line.go options.go parse.go plain_text.go plain_text_inner.go read.go result.go source.go
Directories ¶
- Version
- v0.0.1
- Published
- Jul 27, 2014
- Platform
- windows/amd64
- Imports
- 8 packages
- Last checked
- now –
Tools for package owners.