From: Dato Simó Date: Mon, 12 May 2014 02:34:44 +0000 (+0100) Subject: Add a blank line after the front matter when writing back a page. X-Git-Tag: v0.11~33 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=05b76dcb;p=brevno-suite%2Fhugo Add a blank line after the front matter when writing back a page. Could also be done in parser.InterfaceToFrontMatter(), but logically the extra blank line belongs to the page, not the front matter itself. --- diff --git a/hugolib/page.go b/hugolib/page.go index 7305e0ec..370a7a2e 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -570,6 +570,7 @@ func (page *Page) SetSourceMetaData(in interface{}, mark rune) (err error) { if err != nil { return err } + by = append(by, '\n') page.sourceFrontmatter = by