showdown/test/features/simplifiedAutoLink/text.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

7 lines
566 B
HTML

<p><a href="http://www.google.com/foobar">http://www.google.com/foobar</a></p>
<p><a href="http://www.google.com/foobar">www.google.com/foobar</a></p>
<p><a href="ftp://user:password@host.com:port/path">ftp://user:password@host.com:port/path</a></p>
<p>this has some <a href="http://www.google.com/foobar">http://www.google.com/foobar</a> in text</p>
<p>this has some <a href="http://www.google.com/foobar">www.google.com/foobar</a> in text</p>
<p>this has some <a href="ftp://user:password@host.com:port/path">ftp://user:password@host.com:port/path</a> in text</p>