diff options
author | Gervase Markham <gerv@gerv.net> | 2014-01-24 11:19:54 +0100 |
---|---|---|
committer | Gervase Markham <gerv@mozilla.org> | 2014-01-24 11:19:54 +0100 |
commit | 27ffdb76af4834c7892b3f3f7141df9b948f7190 (patch) | |
tree | 873074cae69b09fcf050dbb88d63fe85e1dc1e5e /docs | |
parent | 1bb837ef6fa7dc8c17efca3e5ab4c72e838b27ef (diff) | |
download | bugs-27ffdb76af4834c7892b3f3f7141df9b948f7190.tar bugs-27ffdb76af4834c7892b3f3f7141df9b948f7190.tar.gz bugs-27ffdb76af4834c7892b3f3f7141df9b948f7190.tar.bz2 bugs-27ffdb76af4834c7892b3f3f7141df9b948f7190.tar.xz bugs-27ffdb76af4834c7892b3f3f7141df9b948f7190.zip |
Bug 962569 - Stop the auto-substitution of "--" with "–"; turn off SmartyPants. r=LpSolit, a=glob.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/en/rst/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/en/rst/conf.py b/docs/en/rst/conf.py index 1d8d0e909..d46b87c3d 100644 --- a/docs/en/rst/conf.py +++ b/docs/en/rst/conf.py @@ -131,7 +131,8 @@ html_static_path = ['_static'] # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. -#html_use_smartypants = True +# Switched off because it converted --long-option to –long-option +html_use_smartypants = False # Custom sidebar templates, maps document names to template names. #html_sidebars = {} |