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 makeMarkdown method inserts two newline symbols after each html-like block in the resulting markdown (<sub> in this example, but also with <s> and <u>).
Input:
<p>wtf? and <strong><em>bold</em></strong> again <sub>and</sub> again</p>
Expected output:
wtf? and ***bold*** again <sub>and</sub> again\n\n
Output:
wtf? and ***bold*** again <sub>and</sub>\n\n again\n\n
The text was updated successfully, but these errors were encountered:
The
makeMarkdown
method inserts two newline symbols after each html-like block in the resulting markdown (<sub> in this example, but also with <s> and <u>).Input:
Expected output:
Output:
The text was updated successfully, but these errors were encountered: