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
The math equations inside $$ $$ are not highlighted.
By interestingly, \[ \] is highlighted but not rendered.
The version of the notebook server is 4.2.2 and is running on:
Python 3.5.2 | packaged by conda-forge | (default, Jul 26 2016, 01:32:08)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)]
The text was updated successfully, but these errors were encountered:
This is probably related to differences between the code mirror lexer and the underlying JSON parser:
Code mirror probably expects standard LaTeX formatting, which \[…\] is(technically you aren't supposed to use $$…$$ if you're writing LaTeX as it is a classic TeX command that has nonstandard spacing… which I'm guessing has been explicitly excluded from activating highlighting for that reason.)
However js sees \[ as just escaping the [ so it won't render, but \\[ … \\]will. I guess this would qualify as a bug but I don't know if the place to fix it is on the Jupyter end… it might be I'm just not sure.
#1757 fixes an issue regarding CodeMirror config for text (markdown and raw) cells. I've tested and syntax highlighting is working for math inside of $ brackets but still not for $$ brackets. The question is: was highlighting of math inside of $$ brackets ever supported? @minrk Do you know?
Hello, I'm closing this issue as it has had no updates in the last 365 days. Please feel free to reopen this issue if it still needs to be addressed. Thank you!
The math equations inside
$$ $$
are not highlighted.By interestingly,
\[ \]
is highlighted but not rendered.The version of the notebook server is 4.2.2 and is running on:
Python 3.5.2 | packaged by conda-forge | (default, Jul 26 2016, 01:32:08)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)]
The text was updated successfully, but these errors were encountered: