output: Fix output format mixup in example
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 18 May 2017 18:37:29 +0000 (21:37 +0300)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 18 May 2017 18:37:29 +0000 (21:37 +0300)
See #3481

output/docshelper.go

index e6b0ed28fea2b25e3126a9703ad4361f75e5b02b..7bd0314500af6e44762c42fcfa7d750116ea6e42 100644 (file)
@@ -46,7 +46,7 @@ func createLayoutExamples() interface{} {
                {`AMP home, with theme "demoTheme".`, LayoutDescriptor{Kind: "home"}, true, "", AMPFormat},
                {"JSON home, no theme.", LayoutDescriptor{Kind: "home"}, false, "", JSONFormat},
                {fmt.Sprintf(`CSV regular, "layout: %s" in front matter.`, demoLayout), LayoutDescriptor{Kind: "page", Layout: demoLayout}, false, "", CSVFormat},
-               {fmt.Sprintf(`JSON regular, "type: %s" in front matter.`, demoType), LayoutDescriptor{Kind: "page", Type: demoType}, false, "", CSVFormat},
+               {fmt.Sprintf(`JSON regular, "type: %s" in front matter.`, demoType), LayoutDescriptor{Kind: "page", Type: demoType}, false, "", JSONFormat},
                {"HTML regular.", LayoutDescriptor{Kind: "page"}, false, "", HTMLFormat},
                {"AMP regular.", LayoutDescriptor{Kind: "page"}, false, "", AMPFormat},
                {"Calendar blog section.", LayoutDescriptor{Kind: "section", Section: "blog"}, false, "", CalendarFormat},