"encoding/csv"
"encoding/json"
"fmt"
+ "regexp"
"strings"
"github.com/gohugoio/hugo/common/herrors"
}
+func parseORGDate(s string) string {
+ r := regexp.MustCompile(`[<\[](\d{4}-\d{2}-\d{2}) .*[>\]]`)
+ if m := r.FindStringSubmatch(s); m != nil {
+ return m[1]
+ }
+ return s
+}
+
func (d Decoder) unmarshalORG(data []byte, v interface{}) error {
config := org.New()
config.Log = jww.WARN
} else if k == "tags" || k == "categories" || k == "aliases" {
jww.WARN.Printf("Please use '#+%s[]:' notation, automatic conversion is deprecated.", k)
frontMatter[k] = strings.Fields(v)
+ } else if k == "date" {
+ frontMatter[k] = parseORGDate(v)
} else {
frontMatter[k] = v
}
{`[ "Brecker", "Blake", "Redman" ]`, JSON, []interface{}{"Brecker", "Blake", "Redman"}},
{`{ "a": "b" }`, JSON, expect},
{`#+a: b`, ORG, expect},
+ {`#+DATE: <2020-06-26 Fri>`, ORG, map[string]interface{}{"date": "2020-06-26"}},
{`a = "b"`, TOML, expect},
{`a: "b"`, YAML, expect},
{`a,b,c`, CSV, [][]string{{"a", "b", "c"}}},