Fix bug with JSON front matter parsing.

This commit is contained in:
spf13 2013-07-09 19:04:22 -04:00
parent a6914e9c4c
commit e76c3feb52

View file

@ -205,7 +205,7 @@ func splitPageContent(data []byte, start string, end string) ([]string, []string
}
if found == 0 {
datum = lines[1 : i+1]
datum = lines[0 : i+1]
lines = lines[i+1:]
break
}