-
-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrap LaTeXString with text{}
#381
Conversation
Is the |
How did the MathJax issue go? |
Good, they said the fix should be in the next patch release. |
@zmoon MathJax released an update, can you check if it works with their latest version? Can you update the version that Pluto is using? |
It seems like there are still issues after the initial fix: mathjax/MathJax#2524 (comment) Pluto specifies Lines 43 to 45 in 1846823
|
Oh that should be a full version instead, can you set it to The new bug looks fine to ignore |
Thanks! |
The goal here was just to make For the short term it seems like it might be better for |
LaTeXStrings is such a mess oof |
Yeah, it's not optimal, but I think it works fine for the main use case of Maybe in the future the |
That doesn't work for |
I am very confused, can you write it without a L_str inside Markdown.parse? Or was that the point? |
It would be really really helpful if you write a PR for this an create a notebook showing off all the things that we want to support. If not then maybe it's best to drop support for LaTeXStrings again |
I used
I will see what I can do! |
@zmoon Great! Just the testing notebook would already be a big help |
@fonsp I made a notebook testing some options here What I discovered is that although my simple example with The issue is that while
Seems like 1. is the way to go for now? |
Wrap
LaTeXString
withtext{}
in order to preserve mixed text/math in the rendered repr using MathJax.#359