helpers: Add support for French Guillemets
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 29 Jul 2017 08:10:40 +0000 (10:10 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 29 Jul 2017 08:10:40 +0000 (10:10 +0200)
Fixes #3725

docs/content/readfiles/bfconfig.md
helpers/content.go
helpers/content_test.go

index 67b349f83db6317659aaa338075c9a949526c448..98e35767859be6aa5ca27528c3cf2a6e51217c8c 100644 (file)
@@ -8,6 +8,11 @@
     Blackfriday flag: **`HTML_USE_SMARTYPANTS`** <br>
     Purpose: `false` disables smart punctuation substitutions, including smart quotes, smart dashes, smart fractions, etc. If `true`, it may be fine-tuned with the `angledQuotes`, `fractions`, `smartDashes`, and `latexDashes` flags (see below).
 
+`smartypantsQuotesNBSP`
+: default: **`false`** <br>
+    Blackfriday flag: **`HTML_SMARTYPANTS_QUOTES_NBSP`** <br>
+    Purpose: `true` enables French style Guillemets with non-breaking space inside the quotes.
+
 `angledQuotes`
 : default: **`false`**<br>
     Blackfriday flag: **`HTML_SMARTYPANTS_ANGLED_QUOTES`**<br>
index 350d1a685822e0ecd8883cb03a11bab6f1190951..d84fe27a82c4bd2e8d0cce9b893bbd04890f949a 100644 (file)
@@ -63,6 +63,7 @@ func NewContentSpec(cfg config.Provider) *ContentSpec {
 // Blackfriday holds configuration values for Blackfriday rendering.
 type Blackfriday struct {
        Smartypants                      bool
+       SmartypantsQuotesNBSP            bool
        AngledQuotes                     bool
        Fractions                        bool
        HrefTargetBlank                  bool
@@ -81,6 +82,7 @@ func (c ContentSpec) NewBlackfriday() *Blackfriday {
        defaultParam := map[string]interface{}{
                "smartypants":                      true,
                "angledQuotes":                     false,
+               "smartypantsQuotesNBSP":            false,
                "fractions":                        true,
                "hrefTargetBlank":                  false,
                "smartDashes":                      true,
@@ -229,6 +231,10 @@ func (c ContentSpec) getHTMLRenderer(defaultFlags int, ctx *RenderingContext) bl
                htmlFlags |= blackfriday.HTML_USE_SMARTYPANTS
        }
 
+       if ctx.Config.SmartypantsQuotesNBSP {
+               htmlFlags |= blackfriday.HTML_SMARTYPANTS_QUOTES_NBSP
+       }
+
        if ctx.Config.AngledQuotes {
                htmlFlags |= blackfriday.HTML_SMARTYPANTS_ANGLED_QUOTES
        }
index 95261efdf7eb0cec9a1462d75baa8cfc33ef8119..e1fe5cebdd9379a0e4d8f868c623ae6f323afe83 100644 (file)
@@ -171,6 +171,7 @@ func TestGetHTMLRendererAllFlags(t *testing.T) {
                {blackfriday.HTML_USE_XHTML},
                {blackfriday.HTML_FOOTNOTE_RETURN_LINKS},
                {blackfriday.HTML_USE_SMARTYPANTS},
+               {blackfriday.HTML_SMARTYPANTS_QUOTES_NBSP},
                {blackfriday.HTML_SMARTYPANTS_ANGLED_QUOTES},
                {blackfriday.HTML_SMARTYPANTS_FRACTIONS},
                {blackfriday.HTML_HREF_TARGET_BLANK},
@@ -186,6 +187,7 @@ func TestGetHTMLRendererAllFlags(t *testing.T) {
        ctx.Config.PlainIDAnchors = true
        ctx.Config.SmartDashes = true
        ctx.Config.Smartypants = true
+       ctx.Config.SmartypantsQuotesNBSP = true
        ctx.Config.SourceRelativeLinksEval = true
        renderer := c.getHTMLRenderer(defaultFlags, ctx)
        actualFlags := renderer.GetFlags()