From 088d46a804fc9345203fdcf90964b195775fa0e0 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Sun, 8 Feb 2015 09:50:01 -0700 Subject: [PATCH] parser.FormatSanitize() MetaDataFormat for date too So that the date would come out correctly with variations like `MetaDataFormat = "YAML"` in addition to the normally expected `MetaDataFormat = "yaml"`. Fixes #865. --- create/content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create/content.go b/create/content.go index 98b3652a4..fa37f2666 100644 --- a/create/content.go +++ b/create/content.go @@ -98,7 +98,7 @@ func NewContent(kind, name string) (err error) { return err } - if x := viper.GetString("MetaDataFormat"); x == "json" || x == "yaml" || x == "toml" { + if x := parser.FormatSanitize(viper.GetString("MetaDataFormat")); x == "json" || x == "yaml" || x == "toml" { newmetadata["date"] = time.Now().Format(time.RFC3339) }