aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/postprocessors.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown/postprocessors.py')
-rw-r--r--markdown/postprocessors.py8
1 files changed, 8 insertions, 0 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('&', '&')