1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-03 13:57:45 +01:00
liquid/parser/config.go

16 lines
329 B
Go
Raw Normal View History

2017-07-07 11:41:37 +02:00
package parser
import "github.com/osteele/liquid/expression"
// // Config holds configuration information for parsing and rendering.
type Config struct {
expression.Config
// Filename string
Grammar Grammar
}
// NewConfig creates a new Settings.
func NewConfig() Config {
return Config{Config: expression.NewConfig()}
}