Skip to content

Commit

Permalink
get rid of math dollar
Browse files Browse the repository at this point in the history
  • Loading branch information
grburgess committed Sep 27, 2022
1 parent b54a453 commit 31f4260
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,23 +111,24 @@ def run_apidoc(app):
"sphinx.ext.githubpages",
"sphinx.ext.napoleon",
"sphinx_gallery.load_style",
"sphinx_math_dollar",
# "sphinx_math_dollar",
"sphinx_rtd_dark_mode",
]
mathjax_config = {
"tex2jax": {
"inlineMath": [["\\(", "\\)"]],
"displayMath": [["\\[", "\\]"]],
},
}

mathjax3_config = {
"tex": {
"inlineMath": [["\\(", "\\)"]],
"displayMath": [["\\[", "\\]"]],
}
}
from sphinx_math_dollar import NODE_BLACKLIST
# mathjax_config = {
# "tex2jax": {
# "inlineMath": [["\\(", "\\)"]],
# "displayMath": [["\\[", "\\]"]],
# },
# }

# mathjax3_config = {
# "tex": {
# "inlineMath": [["\\(", "\\)"]],
# "displayMath": [["\\[", "\\]"]],
# }
# }
# from sphinx_math_dollar import NODE_BLACKLIST


napoleon_google_docstring = True
Expand Down

0 comments on commit 31f4260

Please sign in to comment.