Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/create
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-02-08 19:50:01 +0300
committerAnthony Fok <foka@debian.org>2015-02-08 19:55:20 +0300
commit088d46a804fc9345203fdcf90964b195775fa0e0 (patch)
tree2f16a2f093ac3dcdd589d0462416289d5bc855ee /create
parent08219161dd48d952085dd2e421dc7b005319684c (diff)
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.
Diffstat (limited to 'create')
-rw-r--r--create/content.go2
1 files changed, 1 insertions, 1 deletions
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)
}