diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-03-01 13:07:57 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-03-15 20:41:26 -0400 |
commit | 114770b3043bca52a8e3fa4f007012b3b4dff602 (patch) | |
tree | 7cf4de3a8759442338cf1f2875f3996661ecf4dc | |
parent | a7844d9eb42c2786d5809443b5a9c3cc1dae0788 (diff) | |
download | markdown-114770b3043bca52a8e3fa4f007012b3b4dff602.tar.gz markdown-114770b3043bca52a8e3fa4f007012b3b4dff602.tar.bz2 markdown-114770b3043bca52a8e3fa4f007012b3b4dff602.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.
-rw-r--r-- | markdown/postprocessors.py | 8 | ||||
-rw-r--r-- | tests/misc/html.html | 3 | ||||
-rw-r--r-- | tests/misc/html.txt | 1 |
3 files changed, 11 insertions, 1 deletions
diff --git a/markdown/postprocessors.py b/markdown/postprocessors.py index 80227bb..e5c2e06 100644 --- a/markdown/postprocessors.py +++ b/markdown/postprocessors.py @@ -44,6 +44,7 @@ class RawHtmlPostprocessor(Postprocessor): """ Iterate over html stash and restore "safe" html. """ for i in range(self.markdown.htmlStash.html_counter): html, safe = self.markdown.htmlStash.rawHtmlBlocks[i] + html = self.unescape(html) if self.markdown.safeMode and not safe: if str(self.markdown.safeMode).lower() == 'escape': html = self.escape(html) @@ -59,6 +60,13 @@ class RawHtmlPostprocessor(Postprocessor): html) return text + def unescape(self, html): + """ Unescape any markdown escaped text within inline html. """ + for k, v in self.markdown.treeprocessors['inline'].stashed_nodes.items(): + ph = markdown.INLINE_PLACEHOLDER % k + html = html.replace(ph, '\%s' % v) + return html + def escape(self, html): """ Basic html escaping """ html = html.replace('&', '&') 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 diff --git a/tests/misc/html.txt b/tests/misc/html.txt index c08fe1d..b04b740 100644 --- a/tests/misc/html.txt +++ b/tests/misc/html.txt @@ -15,3 +15,4 @@ And of course <script>blah</script>. [this <script>link](<script>stuff</script>) +Some funky <x\]> inline stuff with markdown escaping syntax. |