markdown-viewer
markdown-viewer copied to clipboard
[mathjax] Markdown Quote Symbol (>) being rendered with MathJax blocks
Quote Markdown characters are being rendered inside MathJax, specifically the Quote (>
) symbols.
Usually, I type homework assignments either in Typora or Visual Studio Code, and for answers, I usually wrap them in Quote paragraphs.
For example,
-
What is the quadratic formula?
$$ x={\frac {-b\pm {\sqrt {b^{2}-4ac}}}{2a}} $$
However, when opening this file on Chrome, it will render like this:
Instead of,
I know you mentioned in the README,
The following rules apply to your content when mathjax is enabled:
Regular dollar sign $ in text that is not part of a math formula should be escaped: $ Regular markdown escaping for parentheses: ( and ), and brackets: [ and ] is not supported. MathJax will convert anything between these delimiters to math formulas, unless they are wrapped in backticks:
\(
or fenced code blocks.
However, is there a possibility to include the Quote Symbol (>
) as an exception since it is a Paragraph tool in Markdown?
Thanks!
Thanks for the thorough explanation, seems like something that maybe needs fixing in here.