From dbc3df168701f631b6554ecfd74565b1c9c8f1a0 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Tue, 12 Jun 2018 11:19:03 -0400 Subject: [PATCH] Switch Sphinx docs to KaTeX instead of MathJax --- doc/sphinx/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index 0d3918fbc..f233361b0 100644 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -41,10 +41,12 @@ extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.autosummary', - 'sphinx.ext.mathjax', 'sphinxcontrib.doxylink', + 'sphinxcontrib.katex', # Use KaTeX because it's faster and the main site uses it ] +katex_version = '0.10.0-beta' + autodoc_default_flags = ['members','show-inheritance','undoc-members'] autoclass_content = 'both'