mirror of
https://github.com/danog/liquid.git
synced 2024-11-27 01:44:39 +01:00
2e8f51ad06
Add* Register* ControlTag / StartTag -> Block
60 lines
2.0 KiB
Go
60 lines
2.0 KiB
Go
/*
|
|
Package liquid is a pure Go implementation of Shopify Liquid templates, for use in https://github.com/osteele/gojekyll.
|
|
|
|
See the project README https://github.com/osteele/liquid for additional information and implementation status.
|
|
*/
|
|
package liquid
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/osteele/liquid/chunks"
|
|
)
|
|
|
|
// Engine parses template source into renderable text.
|
|
//
|
|
// An engine can be configured with additional filters and tags.
|
|
//
|
|
// Filters
|
|
//
|
|
// RegisterFilter defines a Liquid filter.
|
|
//
|
|
// A filter is any function that takes at least one input, and returns one or two outputs.
|
|
// If it returns two outputs, the second must be an error.
|
|
type Engine interface {
|
|
// RegisterFilter defines a filter function e.g. {{ value | filter: arg }}.
|
|
RegisterFilter(name string, fn interface{})
|
|
// RegisterTag defines a tag function e.g. {% tag %}.
|
|
RegisterTag(string, TagDefinition)
|
|
RegisterBlock(string, func(io.Writer, chunks.RenderContext) error)
|
|
|
|
ParseTemplate([]byte) (Template, error)
|
|
// ParseAndRender parses and then renders the template.
|
|
ParseAndRender([]byte, Context) ([]byte, error)
|
|
// ParseAndRenderString is a convenience wrapper for ParseAndRender, that has string input and output.
|
|
ParseAndRenderString(string, Context) (string, error)
|
|
}
|
|
|
|
// Template renders a template according to scope.
|
|
//
|
|
// Bindings is a map of liquid variable names to objects.
|
|
type Template interface {
|
|
// Render executes the template with the specified bindings.
|
|
Render(Context) ([]byte, error)
|
|
// RenderString is a convenience wrapper for Render, that has string input and output.
|
|
RenderString(Context) (string, error)
|
|
}
|
|
|
|
// Context supplies variable bindings and other information to a
|
|
// Render.
|
|
//
|
|
// In the future, it will hold methods to get and set the current
|
|
// filename.
|
|
type Context interface {
|
|
Bindings() map[string]interface{}
|
|
}
|
|
|
|
// TagDefinition is the type of a function that parses the argument string "args" from a tag "{% tagname args %}",
|
|
// and returns a renderer.
|
|
type TagDefinition func(io.Writer, chunks.RenderContext) error
|