viper.SetDefault("FootnoteAnchorPrefix", "")
viper.SetDefault("FootnoteReturnLinkContents", "")
viper.SetDefault("NewContentEditor", "")
- viper.SetDefault("Blackfriday", map[string]bool{"angledQuotes": false, "plainIdAnchors": false})
+ viper.SetDefault("Blackfriday", map[string]bool{"angledQuotes": false, "fractions": true, "plainIdAnchors": false})
if hugoCmdV.PersistentFlags().Lookup("buildDrafts").Changed {
viper.Set("BuildDrafts", Draft)
<td class="purpose-description" colspan="2">Enable smart angled double quotes <small>(e.g. <code>"Hugo"</code> renders to «Hugo» instead of “Hugo”)</small></td>
</tr>
+<tr>
+<td><code>fractions</code></td>
+<td><code>true</code></td>
+<td><code>HTML_SMARTYPANTS_FRACTIONS</code></td>
+</tr>
+<tr>
+<td class="purpose-title">Purpose:</td>
+<td class="purpose-description" colspan="2">Enable smart fractions
+<small>(e.g. <code>5/12</code> renders to <sup>5</sup>⁄<sub>12</sub> (<code><sup>5</sup>&frasl;<sub>12</sub></code>))
+<strong>Caveat:</strong> Even with <code>fractions = false</code>,
+Blackfriday would still convert 1/2, 1/4 and 3/4 to ½ (<code>&frac12;</code>),
+¼ (<code>&frac14;</code>) and ¾ (<code>&frac34;</code>) respectively,
+but only these three.</small></td>
+</tr>
+
<tr>
<td><code>plainIdAnchors</code></td>
<td><code>false</code></td>
</tr>
<tr>
<td><pre><code>[blackfriday]
- angledQuotes = true
- plainIdAnchors = true
+ angledQuotes = true
+ fractions = false
+ plainIdAnchors = true
</code></pre></td>
<td><pre><code>blackfriday:
angledQuotes: true
+ fractions: false
plainIdAnchors: true
</code></pre></td>
</tr>
htmlFlags := defaultFlags
htmlFlags |= blackfriday.HTML_USE_XHTML
htmlFlags |= blackfriday.HTML_USE_SMARTYPANTS
- htmlFlags |= blackfriday.HTML_SMARTYPANTS_FRACTIONS
htmlFlags |= blackfriday.HTML_SMARTYPANTS_LATEX_DASHES
htmlFlags |= blackfriday.HTML_FOOTNOTE_RETURN_LINKS
- var angledQuotes bool
+ var angledQuotes, fractions bool
if m, ok := ctx.ConfigFlags["angledQuotes"]; ok {
angledQuotes = m
htmlFlags |= blackfriday.HTML_SMARTYPANTS_ANGLED_QUOTES
}
+ if m, ok := ctx.ConfigFlags["fractions"]; ok {
+ fractions = m
+ }
+
+ if fractions {
+ htmlFlags |= blackfriday.HTML_SMARTYPANTS_FRACTIONS
+ }
+
return blackfriday.HtmlRendererWithParameters(htmlFlags, "", "", renderParameters)
}