1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Mon, 25 Jul 2016 13:19:50 +0200
Bug-Debian: https://bugs.debian.org/832299
Description: Fix sphinx.ext.mathjax: other math package is already loaded
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -30,7 +30,7 @@ import ruffus, ruffus.task, ruffus.ruffu
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo',
- 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode']
+ 'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode']
mathjax_path = 'file:///usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
|