From: spf13 Date: Wed, 9 Apr 2014 01:40:03 +0000 (-0400) Subject: Making node.Keywords the correct length X-Git-Tag: v0.11~83 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c8269d6d;p=brevno-suite%2Fhugo Making node.Keywords the correct length --- diff --git a/hugolib/page.go b/hugolib/page.go index b349be40..0c66c215 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -144,7 +144,7 @@ func renderBytes(content []byte, pagefmt string) []byte { func newPage(filename string) *Page { page := Page{contentType: "", File: File{FileName: filename, Extension: "html"}, - Node: Node{Keywords: make([]string, 10, 30)}, + Node: Node{Keywords: []string{}}, Params: make(map[string]interface{})} jww.DEBUG.Println("Reading from", page.File.FileName)