1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Use sphinx.ext.imgmath instead of sphinx.ext.mathjax
Otherwise, sphinx will insert links to a CDN for MathJax, resulting in a
privacy-breach-generic Lintian warning.
Author: Doug Torrance <dtorrance@debian.org>
Bug-Debian: https://bugs.debian.org/739300
Forwarded: not-needed
Last-Update: 2021-02-27
--- a/src/Python/PHCpy/doc/source/conf.py
+++ b/src/Python/PHCpy/doc/source/conf.py
@@ -32,7 +32,7 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
- 'sphinx.ext.mathjax',
+ 'sphinx.ext.imgmath',
]
# Add any paths that contain templates here, relative to this directory.
|