1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-27 08:24:38 +01:00
liquid/template.go
2017-06-27 07:43:42 -04:00

35 lines
845 B
Go

package liquid
import (
"bytes"
"github.com/osteele/liquid/chunks"
)
// Template renders a template according to scope.
//
// Scope is a map of liquid variable names to objects.
type Template interface {
Render(scope map[string]interface{}) ([]byte, error)
RenderString(scope map[string]interface{}) (string, error)
}
// Render applies the template to the scope.
func (t *template) Render(scope map[string]interface{}) ([]byte, error) {
buf := new(bytes.Buffer)
err := t.ast.Render(buf, chunks.NewContext(scope))
if err != nil {
return nil, err
}
return buf.Bytes(), nil
}
// RenderString is a convenience wrapper for Render, that has string input and output.
func (t *template) RenderString(scope map[string]interface{}) (string, error) {
b, err := t.Render(scope)
if err != nil {
return "", err
}
return string(b), nil
}