Refactor Org mode front matter: Introduce '#+KEY[]:' array notation
authorNiklas Fasching <niklas.fasching@gmail.com>
Tue, 4 Jun 2019 10:21:48 +0000 (12:21 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 8 Jun 2019 08:13:00 +0000 (10:13 +0200)
Hugo requires some front matter values to be arrays (e.g. for taxonomies).
Org mode front matter syntax (`#+KEY: VALUE`) does however not support anything
but string values normally - which is why goorgeous hardcoded the values for
the keys tags, categories & aliases to be parsed as string arrays. This causes
problems with custom taxonomies.

A simple thing we can do instead is make keywords ending in '[]' be parsed as
string arrays.

parser/metadecoders/decoder.go

index af2e19f8f63b40b2eb6c34b9e6f6d82542bc9e39..e7b0e3c97b8feb70f6457c941648b93827867ec1 100644 (file)
@@ -187,7 +187,10 @@ func (d Decoder) unmarshalORG(data []byte, v interface{}) error {
        frontMatter := make(map[string]interface{}, len(document.BufferSettings))
        for k, v := range document.BufferSettings {
                k = strings.ToLower(k)
-               if k == "tags" || k == "categories" || k == "aliases" {
+               if strings.HasSuffix(k, "[]") {
+                       frontMatter[k[:len(k)-2]] = strings.Fields(v)
+               } 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 {
                        frontMatter[k] = v