diff --git a/content/overview/configuration.md b/content/overview/configuration.md index 4e4b750c1..a07ef5672 100644 --- a/content/overview/configuration.md +++ b/content/overview/configuration.md @@ -91,6 +91,21 @@ But Hugo does expose some options---as listed in the table below, matched with t
"Hugo"
renders to «Hugo» instead of “Hugo”)fractions
true
HTML_SMARTYPANTS_FRACTIONS
5/12
renders to 5⁄12 (<sup>5</sup>⁄<sub>12</sub>
))
+Caveat: Even with fractions = false
,
+Blackfriday would still convert 1/2, 1/4 and 3/4 to ½ (½
),
+¼ (¼
) and ¾ (¾
) respectively,
+but only these three.plainIdAnchors
false
[blackfriday]
- angledQuotes = true
- plainIdAnchors = true
+ angledQuotes = true
+ fractions = false
+ plainIdAnchors = true
blackfriday:
angledQuotes: true
+ fractions: false
plainIdAnchors: true