1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 23:14:40 +01:00
gojekyll/utils/yaml.go
2017-08-20 17:45:25 -04:00

27 lines
537 B
Go

package utils
import yaml "gopkg.in/yaml.v2"
// UnmarshalYAMLInterface is a wrapper for yaml.Unmarshal that
// knows how to unmarshal maps and lists.
func UnmarshalYAMLInterface(b []byte, i *interface{}) error {
var m yaml.MapSlice
err := yaml.Unmarshal(b, &m)
switch err.(type) {
case *yaml.TypeError:
// Work around https://github.com/go-yaml/yaml/issues/20
var s []interface{}
err = yaml.Unmarshal(b, &s)
if err != nil {
return err
}
*i = s
default:
if err != nil {
return err
}
*i = m
}
return nil
}