showdownjs / showdown

A bidirectional Markdown to HTML to Markdown converter written in Javascript
http://www.showdownjs.com/
MIT License
14.26k stars 1.56k forks source link

bold tags don't round trip if they start with a space when passed to makeMarkdown then to makeHtml #741

Open celamai opened 4 years ago

celamai commented 4 years ago

Description:

\<strong> tags don't round trip if they start with a space when passed to makeMarkdown then to makeHtml

Input:

hello<strong> world</strong>

Expected output:

hello **world**
hello <strong>world</strong>

Actual Output:

hello** world**
<p>hello** world**</p>
damienromito commented 3 years ago

I get the same issue with italic also... we have to add a message for users "DO NOT ADD BOLD OR ITALIC ON SPACES"... it's not very convenient. BTW : thank you for your job