Move blackfriday site-wide config loading to NewBlackFriday()
authorMarek Janda <nyx@nyx.cz>
Tue, 3 Nov 2015 19:09:34 +0000 (20:09 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Nov 2015 16:35:36 +0000 (17:35 +0100)
helpers/content.go
hugolib/page.go

index b42efaefe6e0a31fb87b6223403760574cdbc684..157fbad5c14820e9259a9cf1c9bc554aad5f6579 100644 (file)
@@ -24,7 +24,9 @@ import (
        "unicode/utf8"
 
        "github.com/miekg/mmark"
+       "github.com/mitchellh/mapstructure"
        "github.com/russross/blackfriday"
+       "github.com/spf13/cast"
        bp "github.com/spf13/hugo/bufferpool"
        jww "github.com/spf13/jwalterweatherman"
        "github.com/spf13/viper"
@@ -52,17 +54,33 @@ type Blackfriday struct {
        ExtensionsMask  []string
 }
 
-// NewBlackfriday creates a new Blackfriday with some sane defaults.
+// NewBlackfriday creates a new Blackfriday filled with site config or some sane defaults
 func NewBlackfriday() *Blackfriday {
-       return &Blackfriday{
-               Smartypants:     true,
-               AngledQuotes:    false,
-               Fractions:       true,
-               HrefTargetBlank: false,
-               SmartDashes:     true,
-               LatexDashes:     true,
-               PlainIDAnchors:  false,
+       combinedParam := map[string]interface{}{
+               "smartypants":     true,
+               "angledQuotes":    false,
+               "fractions":       true,
+               "hrefTargetBlank": false,
+               "smartDashes":     true,
+               "latexDashes":     true,
+               "plainIDAnchors":  false,
+       }
+
+       siteParam := viper.GetStringMap("blackfriday")
+       if siteParam != nil {
+               siteConfig := cast.ToStringMap(siteParam)
+
+               for key, value := range siteConfig {
+                       combinedParam[key] = value
+               }
+       }
+
+       combinedConfig := &Blackfriday{}
+       if err := mapstructure.Decode(combinedParam, combinedConfig); err != nil {
+               jww.FATAL.Printf("Failed to get site rendering config\n%s", err.Error())
        }
+
+       return combinedConfig
 }
 
 var blackfridayExtensionMap = map[string]int{
index bbcca535ace8240fd958eb5274589cea73b23f0c..dc092a464e530c7521f493dda4f993252adbc8fe 100644 (file)
@@ -246,26 +246,10 @@ func (p *Page) renderContent(content []byte) []byte {
 func (p *Page) getRenderingConfig() *helpers.Blackfriday {
 
        p.renderingConfigInit.Do(func() {
-               pageParam := p.GetParam("blackfriday")
-               siteParam := viper.GetStringMap("blackfriday")
+               pageParam := cast.ToStringMap(p.GetParam("blackfriday"))
 
-               combinedParam := siteParam
-
-               if pageParam != nil {
-                       combinedParam = make(map[string]interface{})
-
-                       for k, v := range siteParam {
-                               combinedParam[k] = v
-                       }
-
-                       pageConfig := cast.ToStringMap(pageParam)
-
-                       for key, value := range pageConfig {
-                               combinedParam[key] = value
-                       }
-               }
                p.renderingConfig = helpers.NewBlackfriday()
-               if err := mapstructure.Decode(combinedParam, p.renderingConfig); err != nil {
+               if err := mapstructure.Decode(pageParam, p.renderingConfig); err != nil {
                        jww.FATAL.Printf("Failed to get rendering config for %s:\n%s", p.BaseFileName(), err.Error())
                }
        })