mirror of
https://github.com/danog/liquid.git
synced 2024-12-03 13:57:45 +01:00
15 lines
277 B
Go
15 lines
277 B
Go
package parser
|
|
|
|
import "github.com/osteele/liquid/expression"
|
|
|
|
// A Config holds configuration information for parsing and rendering.
|
|
type Config struct {
|
|
expression.Config
|
|
Grammar Grammar
|
|
}
|
|
|
|
// NewConfig creates a parser Config.
|
|
func NewConfig() Config {
|
|
return Config{}
|
|
}
|