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 python function textwrap.fill doesn't know that it can break between MathML tags. This leads to problems like the one I fixed in 9042656. One issue was that the tag name mrow was split across two lines, that's obvious. A more subtle issue is that when an open/close tag is split across lines, Kramdown might convert the open/close characters from < and > to HTML entities< and >.
The text was updated successfully, but these errors were encountered:
The python function
textwrap.fill
doesn't know that it can break between MathML tags. This leads to problems like the one I fixed in 9042656. One issue was that the tag namemrow
was split across two lines, that's obvious. A more subtle issue is that when an open/close tag is split across lines, Kramdown might convert the open/close characters from<
and>
to HTML entities<
and>
.The text was updated successfully, but these errors were encountered: