From 121aa2fe370fa0df17f0f24827db4f0ff0409b78 Mon Sep 17 00:00:00 2001 From: Firehawke <34792592+Firehawke@users.noreply.github.com> Date: Tue, 21 Apr 2020 00:30:06 -0700 Subject: [PATCH] Fix smartquotes by disabling them: While smartquotes are somewhat configurable, it's better if we don't use them at all. Makes sure there are no hidden pit traps for the users. (#6576) --- docs/source/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index a93b84c0289..d42e8244e4c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -145,8 +145,12 @@ html_theme_path = ["../themes/"] # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. +# This was depreciated in Sphinx 1.6.6 #html_use_smartypants = True +# We don't want smartquotes in general. +smartquotes = False + # Custom sidebar templates, maps document names to template names. #html_sidebars = {}