From 5de715f756fa98153fa530aa7bd0080196ebf460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Philippe=20V=C3=A9ronneau?= Date: Thu, 16 Dec 2021 15:23:54 -0500 Subject: [PATCH] Disable smartquotes dashes in Sphinx. Smarquotes transform "--" into em-dashes, and we don't want that. --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index a28cadb..1446adb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,6 +17,7 @@ templates_path = [] source_suffix = ".rst" master_doc = "index" exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] +smartquotes_action = "qe" primary_domain = None highlight_language = "none"