From 6821e8eeb2ba317f56ee712fc6363252fb831bec Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Tue, 1 Nov 2016 21:56:57 -0700 Subject: [PATCH] disable mathjax sphinx extension (#103) Mathjax isn't actually needed for OCRmyPDF's docs, but enabling this extension causes the browser to download a copy of mathjax.js from cdn.mathjax.org anyway. I have to disable this for the offline docs bundled with Debian, but since you're not using mathjax, it would be nice to have the diff merged upstream. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 docs/conf.py diff --git a/docs/conf.py b/docs/conf.py old mode 100644 new mode 100755 index 6ec9e156..bffdf5cd --- a/docs/conf.py +++ b/docs/conf.py @@ -31,7 +31,7 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.mathjax', + # 'sphinx.ext.mathjax', ] # Add any paths that contain templates here, relative to this directory.