1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

escaping of "<" breaks span-level html

This commit is contained in:
Emanuil Rusev
2013-11-05 21:40:33 +02:00
parent 7249d02cff
commit 0e9202689e
5 changed files with 17 additions and 15 deletions

View File

@@ -0,0 +1 @@
<p>Here's an <b>important</b> <a href=''>link</a>.</p>

View File

@@ -0,0 +1 @@
Here's an <b>important</b> <a href=''>link</a>.

View File

@@ -4,5 +4,6 @@
<p>4 &lt; 5 and 6 > 5.</p>
<p>Here's a <a href="http://example.com/?foo=1&amp;bar=2">link</a> with an ampersand in the URL.</p>
<p>Here's an inline <a href="/script?foo=1&amp;bar=2">link</a>.</p>
<p><a href="http://example.com/autolink?a=1&amp;b=2">http://example.com/autolink?a=1&amp;b=2</a></p>
<hr />
<p>Based on <a href="http://daringfireball.net/projects/downloads/MarkdownTest_1.0.zip">the original</a> test suite.</p>

View File

@@ -1,6 +1,6 @@
AT&T has an ampersand in their name.
AT&amp;T is another way to write it.
AT&T is another way to write it.
This & that.
@@ -12,6 +12,8 @@ Here's an inline [link](/script?foo=1&bar=2).
[1]: http://example.com/?foo=1&bar=2
<http://example.com/autolink?a=1&b=2>
---
Based on [the original](http://daringfireball.net/projects/downloads/MarkdownTest_1.0.zip) test suite.