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
When running the converter with openLinksInNewWindow set to true, it seems to break the conversion of the _underscore_ => <em>underscore</em> markup.
example string: My [link](http://example.com) is _important_
when I convert it with openLinksInNewWindow set false, I receive (as expected): <p>My <a href="http://example.com">link</a> is <em>important</em></p>
when I convert it with openLinksInNewWindow set true, I receive: <p>My <a href="http://example.com">link</a> is _important_</p>
the word important no longer wrapped with the em tag.
Conversion of *star* => <em>star</em> works fine.
The text was updated successfully, but these errors were encountered:
Soon. I'm planning the next release but wanted to merge #358 this PR that is dependent on creating a couple of tests. As soon as #358 is merged, a new showdown release will be published.
When running the converter with
openLinksInNewWindow
set totrue
, it seems to break the conversion of the_underscore_
=><em>underscore</em>
markup.example string:
My [link](http://example.com) is _important_
when I convert it with
openLinksInNewWindow
setfalse
, I receive (as expected):<p>My <a href="http://example.com">link</a> is <em>important</em></p>
when I convert it with
openLinksInNewWindow
settrue
, I receive:<p>My <a href="http://example.com">link</a> is _important_</p>
the word important no longer wrapped with the
em
tag.Conversion of
*star*
=><em>star</em>
works fine.The text was updated successfully, but these errors were encountered: