Versions in this module Expand all Collapse all v0 v0.1.0 Aug 8, 2026 Changes in this version + type Drop interface + LiquidGet func(name string) (any, bool) + type Error struct + Message string + Type string + func (e *Error) Error() string + type ErrorMode int + const Lax + const Strict + const Warn + type Filter func(input any, args []any) (any, error) + type Option func(*parseConfig) + func WithErrorMode(m ErrorMode) Option + func WithFilter(name string, fn Filter) Option + func WithFilters(m map[string]Filter) Option + type Template struct + func MustParse(src string, opts ...Option) *Template + func Parse(src string, opts ...Option) (*Template, error) + func (t *Template) Errors() []error + func (t *Template) Render(assigns map[string]any) (string, error) + func (t *Template) RenderStrict(assigns map[string]any) (string, error)