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
Hi, I noticed two inconsistencies in the conversion when the HTML source has <strong> and <em>. The generated markdown comes without the before and after spaces.
Examples:
<!-- html source --><p>Hello <strong>world</strong>!</p>
<!-- markdown -->
Hello**world**!
<!-- html source --><p>Lorem <em>ipsum</em> dolor sit.</p>
<!-- markdown -->
Lorem*ipsum*dolor sit.
<!-- I put the emphasis as an asterisk here in the example just to enable the syntax highlighting here from GitHub -->
I'm using it without any options enabled.
NodeHtmlMarkdown.translate(rawBody)
The text was updated successfully, but these errors were encountered:
Hi, I noticed two inconsistencies in the conversion when the HTML source has
<strong>
and<em>
. The generated markdown comes without the before and after spaces.Examples:
I'm using it without any options enabled.
The text was updated successfully, but these errors were encountered: