shithub: hugo

Download patch

ref: e4af4f652e145adac7d69f8a2524a45bd3e000f6
parent: 0bfe9276c2d6041e2835d5c20320b8acb36ef692
author: Ask Bjørn Hansen <[email protected]>
date: Sat Feb 15 20:22:11 EST 2014

Support ISO8601 date/time format without timezones

--- a/hugolib/metadata.go
+++ b/hugolib/metadata.go
@@ -38,6 +38,7 @@
 func stringToDate(s string) (time.Time, error) {
 	return parseDateWith(s, []string{
 		time.RFC3339,
+		"2006-01-02T15:04:05", // iso8601 without timezone
 		time.RFC1123Z,
 		time.RFC1123,
 		time.RFC822Z,