mirror of
https://github.com/danog/liquid.git
synced 2024-12-03 13:57:45 +01:00
16 lines
329 B
Go
16 lines
329 B
Go
|
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()}
|
||
|
}
|