From 0c59b31f02906e6c1c35928afa41bab115cf4ec0 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Thu, 11 Oct 2007 03:22:28 +0000 Subject: Factored out header and paragraph code from _processSection() to _processHeader() & _processParagraph(). See [1793419]. --- markdown.py | 59 ++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 32 insertions(+), 27 deletions(-) diff --git a/markdown.py b/markdown.py index 0b7fac0..d09f1b2 100644 --- a/markdown.py +++ b/markdown.py @@ -1023,7 +1023,7 @@ class CorePatterns : effort.""" patterns = { - 'header': r'(#*)\s*([^#]*)(#*)', # # A title + 'header': r'(#*)([^#]*)(#*)', # # A title 'reference-def' : r'(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)', # [Google]: http://www.google.com/ 'containsline': r'([-]*)$|^([=]*)', # -----, =====, etc. @@ -1287,42 +1287,47 @@ class Markdown: not line.strip()) if len(paragraph) and paragraph[0].startswith('#') : - m = RE.regExp['header'].match(paragraph[0]) - if m : - level = len(m.group(1)) - h = self.doc.createElement("h%d" % level) - parent_elem.appendChild(h) - for item in self._handleInlineWrapper(m.group(2).strip()) : - h.appendChild(item) - else : - message(CRITICAL, "We've got a problem header!") + self._processHeader(parent_elem, paragraph) elif paragraph : + self._processParagraph(parent_elem, paragraph, + inList, looseList) - list = self._handleInlineWrapper("\n".join(paragraph)) + if theRest : + theRest = theRest[1:] # skip the first (blank) line - if ( parent_elem.nodeName == 'li' - and not (looseList or parent_elem.childNodes)): + self._processSection(parent_elem, theRest, inList) - #and not parent_elem.childNodes) : - # If this is the first paragraph inside "li", don't - # put

around it - append the paragraph bits directly - # onto parent_elem - el = parent_elem - else : - # Otherwise make a "p" element - el = self.doc.createElement("p") - parent_elem.appendChild(el) - for item in list : - el.appendChild(item) + def _processHeader(self, parent_elem, paragraph) : + m = RE.regExp['header'].match(paragraph[0]) + if m : + level = len(m.group(1)) + h = self.doc.createElement("h%d" % level) + parent_elem.appendChild(h) + for item in self._handleInlineWrapper(m.group(2).strip()) : + h.appendChild(item) + else : + message(CRITICAL, "We've got a problem header!") - if theRest : - theRest = theRest[1:] # skip the first (blank) line + def _processParagraph(self, parent_elem, paragraph, inList, looseList) : + list = self._handleInlineWrapper("\n".join(paragraph)) - self._processSection(parent_elem, theRest, inList) + if ( parent_elem.nodeName == 'li' + and not (looseList or parent_elem.childNodes)): + # If this is the first paragraph inside "li", don't + # put

around it - append the paragraph bits directly + # onto parent_elem + el = parent_elem + else : + # Otherwise make a "p" element + el = self.doc.createElement("p") + parent_elem.appendChild(el) + for item in list : + el.appendChild(item) + def _processUList(self, parent_elem, lines, inList) : self._processList(parent_elem, lines, inList, -- cgit v1.2.3