Disable SmartyPants for docs

This commit disables SmartyPants feature for docs because it renders
dashes into a en-dash[1]. e.g. '--' to '–'(–). However it's not
good behavior for command options.

[1] http://www.sphinx-doc.org/en/stable/config.html#confval-html_use_smartypants

Change-Id: I9b0a84298275bb87237033942f0ddf9d271e9451
This commit is contained in:
Masayuki Igawa 2017-03-31 14:56:13 +09:00
parent 3cce87ac3b
commit 84f3a01e9f
No known key found for this signature in database
GPG Key ID: 251CCDE9053850E4
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ html_last_updated_fmt = os.popen(git_cmd).read()
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
html_use_smartypants = False
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}