You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, Markdown of any flavor uses backslashes for its own processing (to prevent the usual effect of the following character), and usually that means that the backslash is removed and the following character is inserted into the HTML document without the backslash. That is likely the source of your problem. You might be able to use \\$ in your parsedown source in order to get \$ in the resulting web page (right now, you are just getting a $ without the backslash). You will probably need to add processEscapes: true to the tex2jax section of your configuration as well.
Issue Summary
When trying to process
\$ 123 \$
, the renderer returns123
as inline formula, rather than the attended$123$
Steps to Reproduce:
See above.
Technical details:
The text is first processed by Parsedown (Markdown engine), then Mathjax.
I am using the following MathJax configuration:
Even when adding
processEscapes:true
, nothing happened.and loading MathJax via
The text was updated successfully, but these errors were encountered: