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

@@ -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.