diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-03-01 13:07:57 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-03-01 13:07:57 -0500 |
commit | 996bcdd332551b82791ab0851e2f7f826bc0a4ed (patch) | |
tree | 7cf4de3a8759442338cf1f2875f3996661ecf4dc /tests/misc/html.html | |
parent | a7844d9eb42c2786d5809443b5a9c3cc1dae0788 (diff) | |
download | markdown-996bcdd332551b82791ab0851e2f7f826bc0a4ed.tar.gz markdown-996bcdd332551b82791ab0851e2f7f826bc0a4ed.tar.bz2 markdown-996bcdd332551b82791ab0851e2f7f826bc0a4ed.zip |
Fix bug with rawhtml and markdown escaping. Previously, any inline rawhtml that contained text that fit markdown's escaping syntax (i.e. <x\]>) was never unescaped. Now it is. Markdown probably shouldn't be escaping before removing rawhtml in the first place, but this will do for now.
Diffstat (limited to 'tests/misc/html.html')
-rw-r--r-- | tests/misc/html.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/misc/html.html b/tests/misc/html.html index cd6d4af..c4bad4f 100644 --- a/tests/misc/html.html +++ b/tests/misc/html.html @@ -10,4 +10,5 @@ Html with various attributes. </div> <p>And of course <script>blah</script>.</p> -<p><a href="script>stuff</script">this <script>link</a></p>
\ No newline at end of file +<p><a href="script>stuff</script">this <script>link</a></p> +<p>Some funky <x\]> inline stuff with markdown escaping syntax.</p>
\ No newline at end of file |