From a7ad7698264dc1c5edacba076e60839866b5d6af Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 21 Nov 2021 15:54:38 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=93=20Disable=20smartquotes=20for=20it?= =?UTF-8?q?alian?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- thesis/source/conf.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/thesis/source/conf.py b/thesis/source/conf.py index 4e0b347..83bfb39 100644 --- a/thesis/source/conf.py +++ b/thesis/source/conf.py @@ -167,3 +167,17 @@ rinoh_documents = [ "target": "manual", } ] + +# Smartquotes +smartquotes_excludes = { + "languages": [ + # Smartquotes is completely broken in italian! + "it", + # Keep the default, just in case + "ja", + ], + "builders": [ + "man", + "text", + ] +}