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 noticed that the block math have to be on separate lines. Typographically LaTeX display math are inline-blocks and they can be typed inline. So the following syntax should be supported:
some text right here $$\alpha$$ and some more inline math.
In addition, the generated html should be:
<p>some text right here
<spandisplaymathhere></span></p>
Right now the handling is incorrect. the result atm is:
<p> some text right here</p><spandisplaymath></span><p></p>
The text was updated successfully, but these errors were encountered:
Thanks for this great plug-in!
I noticed that the block math have to be on separate lines. Typographically LaTeX display math are inline-blocks and they can be typed inline. So the following syntax should be supported:
some text right here $$ \alpha $$ and some more inline math.
In addition, the generated html should be:
Right now the handling is incorrect. the result atm is:
The text was updated successfully, but these errors were encountered: