diff --git a/setup.go b/setup.go index c514b326..8e497a82 100644 --- a/setup.go +++ b/setup.go @@ -203,7 +203,14 @@ func getFrontMatter(conf *Config) string { log.Println(err) fmt.Printf("Can't get the default frontmatter from the configuration. %s will be used.\n", format) } else { - bytes = frontmatter.AppendRune(bytes, frontmatter.StringFormatToRune(format)) + r, err := frontmatter.StringFormatToRune(format) + if err != nil { + log.Println(err) + fmt.Printf("Can't get the default frontmatter from the configuration. %s will be used.\n", format) + return format + } + + bytes = frontmatter.AppendRune(bytes, r) f, err := frontmatter.Unmarshal(bytes) if err != nil {