summaryrefslogtreecommitdiffstats
path: root/tests/test_sphinx/sourcedirs/mathjax/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sphinx/sourcedirs/mathjax/conf.py')
-rw-r--r--tests/test_sphinx/sourcedirs/mathjax/conf.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_sphinx/sourcedirs/mathjax/conf.py b/tests/test_sphinx/sourcedirs/mathjax/conf.py
new file mode 100644
index 0000000..b2a70c8
--- /dev/null
+++ b/tests/test_sphinx/sourcedirs/mathjax/conf.py
@@ -0,0 +1,12 @@
+import sphinx
+
+extensions = ["myst_parser"]
+exclude_patterns = ["_build"]
+
+if sphinx.version_info[0] <= 3:
+ mathjax_config = {"tex2jax": {"processClass": "other"}}
+else:
+ mathjax3_config = {"options": {"processHtmlClass": "other"}}
+
+# this should remove the warning
+# suppress_warnings = ["myst.mathjax"]