docs/conf.py does not enable any Sphinx math extension, so the :math: role does not render and the output shows raw MathJax delimiters instead, e.g. \(-2^{63}\).
Reproduce: add e.g. :math:`2^{63} - 1 to any .rst page and build the docs, so the formula appears as literal \(...\) text.
Fix: add sphinx.ext.mathjax to extensions in docs/conf.py (or sphinx.ext.imgmath if the rendered site should not load the MathJax script from a CDN).
No page currently uses :math:, so in the doc ethdebug page we worked around it with plain literals like 2**63 - 1.
docs/conf.pydoes not enable any Sphinx math extension, so the:math:role does not render and the output shows raw MathJax delimiters instead, e.g.\(-2^{63}\).Reproduce: add e.g.
:math:`2^{63} - 1to any .rst page and build the docs, so the formula appears as literal\(...\)text.Fix: add
sphinx.ext.mathjaxtoextensionsindocs/conf.py(orsphinx.ext.imgmathif the rendered site should not load the MathJax script from a CDN).No page currently uses
:math:, so in the doc ethdebug page we worked around it with plain literals like2**63 - 1.