From 5236a9838c580a17c3299efb97d9f41ce2a1efab Mon Sep 17 00:00:00 2001 From: Catalin Iacob Date: Mon, 16 Apr 2012 20:42:47 +0200 Subject: Fixed #87 Elements should be inserted in the tree regardless of enable_attributes --- markdown/treeprocessors.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'markdown/treeprocessors.py') diff --git a/markdown/treeprocessors.py b/markdown/treeprocessors.py index 3340554..841fe0a 100644 --- a/markdown/treeprocessors.py +++ b/markdown/treeprocessors.py @@ -304,14 +304,15 @@ class InlineProcessor(Treeprocessor): if child.getchildren(): stack.append(child) - if self.markdown.enable_attributes: - for element, lst in insertQueue: + for element, lst in insertQueue: + if self.markdown.enable_attributes: if element.text: element.text = \ inlinepatterns.handleAttributes(element.text, element) - i = 0 - for newChild in lst: + i = 0 + for newChild in lst: + if self.markdown.enable_attributes: # Processing attributes if newChild.tail: newChild.tail = \ @@ -321,8 +322,8 @@ class InlineProcessor(Treeprocessor): newChild.text = \ inlinepatterns.handleAttributes(newChild.text, newChild) - element.insert(i, newChild) - i += 1 + element.insert(i, newChild) + i += 1 return tree -- cgit v1.2.3