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
I am wondering if your plugin can be made to work with MathJax?
At the moment the markdown fails to render when using MathJax equations (equation renders) or I get the markdown rendered and the brackets removed from the equation so the equation does not render.
I think that Markdown should work with MathJax if the two libraries and nested correctly?
certainly some JavaScript Markdown libraries have extensions to add MathJax (and Latex support).
The text was updated successfully, but these errors were encountered:
You could try this, which includes potential problem characters like \ and &:
\(
\begin{pmatrix}
1 & x & x^2 \\
1 & y & y^2 \\
1 & z & z^2 \\
\end{pmatrix}
\)
which renders in anki like this:
and
\(\sum_{i=0}^n i^2 = \frac{(n^2+n)(2n+1)}{6}\)
which renders in anki like this:
There are a lot of examples listed at math.meta.stackexchange.com, but note that anki expects the markup to start be enclosed in \( \), not $ delimited
I am wondering if your plugin can be made to work with MathJax?
At the moment the markdown fails to render when using MathJax equations (equation renders) or I get the markdown rendered and the brackets removed from the equation so the equation does not render.
I think that Markdown should work with MathJax if the two libraries and nested correctly?
certainly some JavaScript Markdown libraries have extensions to add MathJax (and Latex support).
The text was updated successfully, but these errors were encountered: