From b984437b2bae281f43ff8c0bd2f2884ffea704d8 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Wed, 29 Jun 2016 10:41:17 +0100 Subject: [PATCH] change default frontmatter. --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 7f0b9da3..8be748a3 100644 --- a/config/config.go +++ b/config/config.go @@ -35,7 +35,7 @@ func Parse(c *caddy.Controller) ([]Config, error) { } for c.Next() { - var cfg = Config{PathScope: ".", BaseURL: "", FrontMatter: "json", HugoEnabled: false} + var cfg = Config{PathScope: ".", BaseURL: "", FrontMatter: "yaml", HugoEnabled: false} for c.NextBlock() { switch c.Val() { case "show":