fix mini bug

This commit is contained in:
Henrique Dias 2015-10-09 20:47:04 +01:00
parent aa8620c52c
commit ade37da060

View File

@ -109,7 +109,7 @@ func parseFrontMatterOnlyFile(rawFile map[string]interface{}, filename string) (
func parseCompleteFile(r *http.Request, c *config.Config, rawFile map[string]interface{}, filename string) ([]byte, int, error) {
// The main content of the file
mainContent := rawFile["content"].(string)
mainContent = "\n\n" + strings.TrimSpace(mainContent)
mainContent = "\n\n" + strings.TrimSpace(mainContent) + "\n"
// Removes the main content from the rest of the frontmatter
delete(rawFile, "content")