showdown/test/features/simplifiedAutoLink/emphasis-and-strikethrough.html
Estevao Soares dos Santos 5c50675cca fix(simpleAutoLinks): URLs with emphasis/strikethrough are parsed
correctly

When a user enters a URL with emphasis or strikethrough, the html output
were incorrect.
Now, URLs inside emphasis or strikethrough are parsed corerctly

Closes #347
2017-02-26 19:13:52 +00:00

8 lines
668 B
HTML

<p><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></p>
<p><strong><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></strong></p>
<p><strong><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></strong></p>
<p><del><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></del></p>
<p><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></p>
<p><strong><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></strong></p>
<p><strong><em><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></em></strong></p>