Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR bumps MathJax 3 to v3.2.0.
Specifically, I'm interested in the the fact that "Processing of raw Unicode characters in TeX input has been improved." (https://www.mathjax.org/MathJax-v3.2.0-available/#other). For the sake of nicely readable docs in the terminal, I'm motivated to include Unicode characters directly in the docstrings of functions:
so that you see the literal characters in the help (rather than requiring the user to read and interpret
\alpha
or\pi
):The problem is that with the MathJax 3 renderer prior to v3.2.0, the math is rendered in the HTML docs as upright text characters rather than italic math characters:
Upgrading to MathJax 3.2.0 fixes this issue (and brings it inline with the behavior of the MathJax 2 renderer):
(Notice change in the alpha and pi characters.)