Making node.Keywords the correct length
authorspf13 <steve.francia@gmail.com>
Wed, 9 Apr 2014 01:40:03 +0000 (21:40 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 9 Apr 2014 01:40:03 +0000 (21:40 -0400)
hugolib/page.go

index b349be40d1627ad0f06dbfacf19fcfd0a035ee1e..0c66c2154ab9cc48f7265e5a76993ed5634c082e 100644 (file)
@@ -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)