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 problem is that the text inside the HTML tags ends with a whitespace which prevents the conversion of the HTML element to a native :strong element. However, there are special rules in the LaTeX converter to convert HTML <i> and <b> tags, but not <strong> and <em> tags.
What you say about the whitespace preventing conversion to markdown/kramdown makes absolute sense. I just was not thinking of that, since I only want LaTeX.
Anyway, there seems to be another bug where a <b> tag gets converted differenly depending on whitespace:
Correct without whitespace (convert to \textbf{}):
<strong>
tags are not parsed correctly if they start or end with a space.Using the API, the following does not parse:
<b>
behaves correctly:The same issue exists with
<em>
(not working) and<i>
(working).The text was updated successfully, but these errors were encountered: