diff --git a/src/libprs500/ebooks/lrf/txt/convert_from.py b/src/libprs500/ebooks/lrf/txt/convert_from.py index 7af7ddb4ce..33a55db4e3 100644 --- a/src/libprs500/ebooks/lrf/txt/convert_from.py +++ b/src/libprs500/ebooks/lrf/txt/convert_from.py @@ -58,11 +58,11 @@ def generate_html(txtfile, encoding, logger): txt = codecs.open(txtfile, 'rb', enc).read() logger.info('Converting text to HTML...') - md = markdown.Markdown(txt, + md = markdown.Markdown( extensions=['footnotes', 'tables', 'toc'], safe_mode=False, ) - html = md.toString() + html = md.convert(txt) p = PersistentTemporaryFile('.html', dir=os.path.dirname(txtfile)) p.close() codecs.open(p.name, 'wb', 'utf8').write(html) diff --git a/src/libprs500/ebooks/markdown/markdown.py b/src/libprs500/ebooks/markdown/markdown.py index eb7b0b4277..1cb7ce24f5 100644 --- a/src/libprs500/ebooks/markdown/markdown.py +++ b/src/libprs500/ebooks/markdown/markdown.py @@ -1,8 +1,8 @@ #!/usr/bin/env python -version = "1.6b" -version_info = (1,6,2,"rc-2") -__revision__ = "$Rev$" +version = "1.7" +version_info = (1,7,0,"rc-1") +__revision__ = "$Rev: 66 $" """ Python-Markdown @@ -12,7 +12,7 @@ Converts Markdown to HTML. Basic usage as a module: import markdown md = Markdown() - html = markdown.convert(your_text_string) + html = md.convert(your_text_string) See http://www.freewisdom.org/projects/python-markdown/ for more information and instructions on how to extend the functionality of the @@ -20,25 +20,39 @@ script. (You might want to read that before you try modifying this file.) Started by [Manfred Stienstra](http://www.dwerg.net/). Continued and -maintained by [Yuri Takhteyev](http://www.freewisdom.org). +maintained by [Yuri Takhteyev](http://www.freewisdom.org) and [Waylan +Limberg](http://achinghead.com/). Contact: yuri [at] freewisdom.org + waylan [at] gmail.com License: GPL 2 (http://www.gnu.org/copyleft/gpl.html) or BSD """ -import re, sys, codecs +import re, sys, os, random, codecs + +from logging import getLogger, StreamHandler, Formatter, \ + DEBUG, INFO, WARN, ERROR, CRITICAL -# Set debug level: 3 none, 2 critical, 1 informative, 0 all -(VERBOSE, INFO, CRITICAL, NONE) = range(4) MESSAGE_THRESHOLD = CRITICAL -def message(level, text) : - if level >= MESSAGE_THRESHOLD : - print text + +# Configure debug message logger (the hard way - to support python 2.3) +logger = getLogger('MARKDOWN') +logger.setLevel(DEBUG) # This is restricted by handlers later +console_hndlr = StreamHandler() +formatter = Formatter('%(name)s-%(levelname)s: "%(message)s"') +console_hndlr.setFormatter(formatter) +console_hndlr.setLevel(MESSAGE_THRESHOLD) +logger.addHandler(console_hndlr) + + +def message(level, text): + ''' A wrapper method for logging debug messages. ''' + logger.log(level, text) # --------------- CONSTANTS YOU MIGHT WANT TO MODIFY ----------------- @@ -62,15 +76,15 @@ RTL_BIDI_RANGES = ( (u'\u0590', u'\u07FF'), # 0780-07BF - Thaana # 07C0-07FF - Nko -BOMS = { 'utf-8' : (unicode(codecs.BOM_UTF8, "utf-8"), ), - 'utf-16' : (unicode(codecs.BOM_UTF16_LE, "utf-16"), - unicode(codecs.BOM_UTF16_BE, "utf-16")), - #'utf-32' : (unicode(codecs.BOM_UTF32_LE, "utf-32"), - # unicode(codecs.BOM_UTF32_BE, "utf-32")), +BOMS = { 'utf-8': (codecs.BOM_UTF8, ), + 'utf-16': (codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE), + #'utf-32': (codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE) } def removeBOM(text, encoding): + convert = isinstance(text, unicode) for bom in BOMS[encoding]: + bom = convert and bom.decode(encoding) or bom if text.startswith(bom): return text.lstrip(bom) return text @@ -94,7 +108,7 @@ BLOCK_LEVEL_ELEMENTS = ['p', 'div', 'blockquote', 'pre', 'table', 'form', 'fieldset', 'iframe', 'math', 'ins', 'del', 'hr', 'hr/', 'style'] -def is_block_level (tag) : +def is_block_level (tag): return ( (tag in BLOCK_LEVEL_ELEMENTS) or (tag[0] == 'h' and tag[1] in "0123456789") ) @@ -122,47 +136,47 @@ ENTITY_NORMALIZATION_EXPRESSIONS_SOFT = [ (re.compile("&(?!\#)"), "&"), (re.compile("\""), """)] -def getBidiType(text) : +def getBidiType(text): - if not text : return None + if not text: return None ch = text[0] if not isinstance(ch, unicode) or not ch.isalpha(): return None - else : + else: - for min, max in RTL_BIDI_RANGES : - if ( ch >= min and ch <= max ) : + for min, max in RTL_BIDI_RANGES: + if ( ch >= min and ch <= max ): return "rtl" - else : + else: return "ltr" -class Document : +class Document: - def __init__ (self) : + def __init__ (self): self.bidi = "ltr" - def appendChild(self, child) : + def appendChild(self, child): self.documentElement = child child.isDocumentElement = True child.parent = self self.entities = {} - def setBidi(self, bidi) : - if bidi : + def setBidi(self, bidi): + if bidi: self.bidi = bidi - def createElement(self, tag, textNode=None) : + def createElement(self, tag, textNode=None): el = Element(tag) el.doc = self - if textNode : + if textNode: el.appendChild(self.createTextNode(textNode)) return el - def createTextNode(self, text) : + def createTextNode(self, text): node = TextNode(text) node.doc = self return node @@ -172,51 +186,51 @@ class Document : self.entities[entity] = EntityReference(entity) return self.entities[entity] - def createCDATA(self, text) : + def createCDATA(self, text): node = CDATA(text) node.doc = self return node - def toxml (self) : + def toxml (self): return self.documentElement.toxml() - def normalizeEntities(self, text, avoidDoubleNormalizing=False) : + def normalizeEntities(self, text, avoidDoubleNormalizing=False): - if avoidDoubleNormalizing : + if avoidDoubleNormalizing: regexps = ENTITY_NORMALIZATION_EXPRESSIONS_SOFT - else : + else: regexps = ENTITY_NORMALIZATION_EXPRESSIONS - for regexp, substitution in regexps : + for regexp, substitution in regexps: text = regexp.sub(substitution, text) return text - def find(self, test) : + def find(self, test): return self.documentElement.find(test) - def unlink(self) : + def unlink(self): self.documentElement.unlink() self.documentElement = None -class CDATA : +class CDATA: type = "cdata" - def __init__ (self, text) : + def __init__ (self, text): self.text = text - def handleAttributes(self) : + def handleAttributes(self): pass - def toxml (self) : + def toxml (self): return "" -class Element : +class Element: type = "element" - def __init__ (self, tag) : + def __init__ (self, tag): self.nodeName = tag self.attributes = [] @@ -225,10 +239,11 @@ class Element : self.bidi = None self.isDocumentElement = False - def setBidi(self, bidi) : + def setBidi(self, bidi): - if bidi : + if bidi: + orig_bidi = self.bidi if not self.bidi or self.isDocumentElement: # Once the bidi is set don't change it (except for doc element) @@ -236,56 +251,56 @@ class Element : self.parent.setBidi(bidi) - def unlink(self) : - for child in self.childNodes : - if child.type == "element" : + def unlink(self): + for child in self.childNodes: + if child.type == "element": child.unlink() self.childNodes = None - def setAttribute(self, attr, value) : - if not attr in self.attributes : + def setAttribute(self, attr, value): + if not attr in self.attributes: self.attributes.append(attr) self.attribute_values[attr] = value - def insertChild(self, position, child) : + def insertChild(self, position, child): self.childNodes.insert(position, child) child.parent = self - def removeChild(self, child) : + def removeChild(self, child): self.childNodes.remove(child) - def replaceChild(self, oldChild, newChild) : + def replaceChild(self, oldChild, newChild): position = self.childNodes.index(oldChild) self.removeChild(oldChild) self.insertChild(position, newChild) - def appendChild(self, child) : + def appendChild(self, child): self.childNodes.append(child) child.parent = self - def handleAttributes(self) : + def handleAttributes(self): pass - def find(self, test, depth=0) : + def find(self, test, depth=0): """ Returns a list of descendants that pass the test function """ matched_nodes = [] - for child in self.childNodes : - if test(child) : + for child in self.childNodes: + if test(child): matched_nodes.append(child) - if child.type == "element" : + if child.type == "element": matched_nodes += child.find(test, depth+1) return matched_nodes def toxml(self): - if ENABLE_ATTRIBUTES : + if ENABLE_ATTRIBUTES: for child in self.childNodes: child.handleAttributes() buffer = "" - if self.nodeName in ['h1', 'h2', 'h3', 'h4'] : + if self.nodeName in ['h1', 'h2', 'h3', 'h4']: buffer += "\n" - elif self.nodeName in ['li'] : + elif self.nodeName in ['li']: buffer += "\n " # Process children FIRST, then do the attributes @@ -294,14 +309,14 @@ class Element : if self.childNodes or self.nodeName in ['blockquote']: childBuffer += ">" - for child in self.childNodes : + for child in self.childNodes: childBuffer += child.toxml() - if self.nodeName == 'p' : + if self.nodeName == 'p': childBuffer += "\n" - elif self.nodeName == 'li' : + elif self.nodeName == 'li': childBuffer += "\n " childBuffer += "" % self.nodeName - else : + else: childBuffer += "/>" @@ -309,18 +324,18 @@ class Element : buffer += "<" + self.nodeName if self.nodeName in ['p', 'li', 'ul', 'ol', - 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'] : + 'h1', 'h2', 'h3', 'h4', 'h5', 'h6']: if not self.attribute_values.has_key("dir"): - if self.bidi : + if self.bidi: bidi = self.bidi - else : + else: bidi = self.doc.bidi - if bidi=="rtl" : + if bidi=="rtl": self.setAttribute("dir", "rtl") - for attr in self.attributes : + for attr in self.attributes: value = self.attribute_values[attr] value = self.doc.normalizeEntities(value, avoidDoubleNormalizing=True) @@ -331,36 +346,36 @@ class Element : buffer += childBuffer - if self.nodeName in ['p', 'li', 'ul', 'ol', + if self.nodeName in ['p', 'br ', 'li', 'ul', 'ol', 'h1', 'h2', 'h3', 'h4'] : buffer += "\n" return buffer -class TextNode : +class TextNode: type = "text" attrRegExp = re.compile(r'\{@([^\}]*)=([^\}]*)}') # {@id=123} - def __init__ (self, text) : + def __init__ (self, text): self.value = text - def attributeCallback(self, match) : + def attributeCallback(self, match): self.parent.setAttribute(match.group(1), match.group(2)) - def handleAttributes(self) : + def handleAttributes(self): self.value = self.attrRegExp.sub(self.attributeCallback, self.value) - def toxml(self) : + def toxml(self): text = self.value self.parent.setBidi(getBidiType(text)) if not text.startswith(HTML_PLACEHOLDER_PREFIX): - if self.parent.nodeName == "p" : + if self.parent.nodeName == "p": text = text.replace("\n", "\n ") elif (self.parent.nodeName == "li" and self.parent.childNodes[0]==self): @@ -399,7 +414,7 @@ must extend markdown.Preprocessor. """ -class Preprocessor : +class Preprocessor: pass @@ -410,27 +425,27 @@ class HeaderPreprocessor (Preprocessor): the nead for lookahead later. """ - def run (self, lines) : + def run (self, lines): i = -1 - while i+1 < len(lines) : + while i+1 < len(lines): i = i+1 - if not lines[i].strip() : + if not lines[i].strip(): continue - if lines[i].startswith("#") : + if lines[i].startswith("#"): lines.insert(i+1, "\n") if (i+1 <= len(lines) and lines[i+1] - and lines[i+1][0] in ['-', '=']) : + and lines[i+1][0] in ['-', '=']): underline = lines[i+1].strip() - if underline == "="*len(underline) : + if underline == "="*len(underline): lines[i] = "# " + lines[i].strip() lines[i+1] = "" - elif underline == "-"*len(underline) : + elif underline == "-"*len(underline): lines[i] = "## " + lines[i].strip() lines[i+1] = "" @@ -441,21 +456,26 @@ HEADER_PREPROCESSOR = HeaderPreprocessor() class LinePreprocessor (Preprocessor): """Deals with HR lines (needs to be done before processing lists)""" - def run (self, lines) : - for i in range(len(lines)) : - if self._isLine(lines[i]) : - lines[i] = "
" + blockquote_re = re.compile(r'^(> )+') + + def run (self, lines): + for i in range(len(lines)): + prefix = '' + m = self.blockquote_re.search(lines[i]) + if m : prefix = m.group(0) + if self._isLine(lines[i][len(prefix):]): + lines[i] = prefix + self.stash.store("
", safe=True) return lines - def _isLine(self, block) : - """Determines if a block should be replaced with an
""" - if block.startswith(" ") : return 0 # a code block + def _isLine(self, block): + """Determines if a block should be replaced with an <:wHR>""" + if block.startswith(" "): return 0 # a code block text = "".join([x for x in block if not x.isspace()]) - if len(text) <= 2 : + if len(text) <= 2: return 0 - for pattern in ['isline1', 'isline2', 'isline3'] : + for pattern in ['isline1', 'isline2', 'isline3']: m = RE.regExp[pattern].match(text) - if (m and m.group(1)) : + if (m and m.group(1)): return 1 else: return 0 @@ -463,19 +483,6 @@ class LinePreprocessor (Preprocessor): LINE_PREPROCESSOR = LinePreprocessor() -class LineBreaksPreprocessor (Preprocessor): - """Replaces double spaces at the end of the lines with
.""" - - def run (self, lines) : - for i in range(len(lines)) : - if (lines[i].endswith(" ") - and not RE.regExp['tabbed'].match(lines[i]) ): - lines[i] += "
" - return lines - -LINE_BREAKS_PREPROCESSOR = LineBreaksPreprocessor() - - class HtmlBlockPreprocessor (Preprocessor): """Removes html blocks from self.lines""" @@ -488,11 +495,11 @@ class HtmlBlockPreprocessor (Preprocessor): def _equal_tags(self, left_tag, right_tag): - if left_tag in ['?', '?php', 'div'] : # handle PHP, etc. + if left_tag in ['?', '?php', 'div']: # handle PHP, etc. return True if ("/" + left_tag) == right_tag: return True - if (right_tag == "--" and left_tag == "--") : + if (right_tag == "--" and left_tag == "--"): return True elif left_tag == right_tag[1:] \ and right_tag[0] != "<": @@ -504,10 +511,9 @@ class HtmlBlockPreprocessor (Preprocessor): return (tag in ['hr', 'hr/']) - def run (self, text) : + def run (self, text): new_blocks = [] - #text = "\n".join(lines) text = text.split("\n\n") items = [] @@ -516,7 +522,7 @@ class HtmlBlockPreprocessor (Preprocessor): in_tag = False # flag for block in text: - if block.startswith("\n") : + if block.startswith("\n"): block = block[1:] if not in_tag: @@ -566,18 +572,18 @@ class HtmlBlockPreprocessor (Preprocessor): self.stash.store('\n\n'.join(items))) items = [] - if items : + if items: new_blocks.append(self.stash.store('\n\n'.join(items))) new_blocks.append('\n') - return "\n\n".join(new_blocks) #.split("\n") + return "\n\n".join(new_blocks) HTML_BLOCK_PREPROCESSOR = HtmlBlockPreprocessor() class ReferencePreprocessor (Preprocessor): - def run (self, lines) : + def run (self, lines): new_text = []; for line in lines: @@ -585,14 +591,14 @@ class ReferencePreprocessor (Preprocessor): if m: id = m.group(2).strip().lower() t = m.group(4).strip() # potential title - if not t : + if not t: self.references[id] = (m.group(3), t) elif (len(t) >= 2 and (t[0] == t[-1] == "\"" or t[0] == t[-1] == "\'" - or (t[0] == "(" and t[-1] == ")") ) ) : + or (t[0] == "(" and t[-1] == ")") ) ): self.references[id] = (m.group(3), t[1:-1]) - else : + else: new_text.append(line) else: new_text.append(line) @@ -648,9 +654,10 @@ So, we apply the expressions in the following order: NOBRACKET = r'[^\]\[]*' BRK = ( r'\[(' - + (NOBRACKET + r'(\['+NOBRACKET)*6 - + (NOBRACKET+ r'\])*'+NOBRACKET)*6 + + (NOBRACKET + r'(\[')*6 + + (NOBRACKET+ r'\])*')*6 + NOBRACKET + r')\]' ) +NOIMG = r'(?\)' # [text]() +LINK_RE = NOIMG + BRK + r'\s*\(([^\)]*)\)' # [text](url) +LINK_ANGLED_RE = NOIMG + BRK + r'\s*\(<([^\)]*)>\)' # [text]() IMAGE_LINK_RE = r'\!' + BRK + r'\s*\(([^\)]*)\)' # ![alttxt](http://x.com/) -REFERENCE_RE = BRK+ r'\s*\[([^\]]*)\]' # [Google][3] +REFERENCE_RE = NOIMG + BRK+ r'\s*\[([^\]]*)\]' # [Google][3] IMAGE_REFERENCE_RE = r'\!' + BRK + '\s*\[([^\]]*)\]' # ![alt text][2] NOT_STRONG_RE = r'( \* )' # stand-alone * or _ AUTOLINK_RE = r'<(http://[^>]*)>' # @@ -678,41 +685,48 @@ AUTOMAIL_RE = r'<([^> \!]*@[^> ]*)>' # #HTML_RE = r'(\<[^\>]*\>)' # <...> HTML_RE = r'(\<[a-zA-Z/][^\>]*\>)' # <...> ENTITY_RE = r'(&[\#a-zA-Z0-9]*;)' # & +LINE_BREAK_RE = r' \n' # two spaces at end of line +LINE_BREAK_2_RE = r' $' # two spaces at end of text class Pattern: - def __init__ (self, pattern) : + def __init__ (self, pattern): self.pattern = pattern self.compiled_re = re.compile("^(.*)%s(.*)$" % pattern, re.DOTALL) - def getCompiledRegExp (self) : + def getCompiledRegExp (self): return self.compiled_re BasePattern = Pattern # for backward compatibility -class SimpleTextPattern (Pattern) : +class SimpleTextPattern (Pattern): - def handleMatch(self, m, doc) : + def handleMatch(self, m, doc): return doc.createTextNode(m.group(2)) class SimpleTagPattern (Pattern): - def __init__ (self, pattern, tag) : + def __init__ (self, pattern, tag): Pattern.__init__(self, pattern) self.tag = tag - def handleMatch(self, m, doc) : + def handleMatch(self, m, doc): el = doc.createElement(self.tag) el.appendChild(doc.createTextNode(m.group(2))) return el +class SubstituteTagPattern (SimpleTagPattern): + + def handleMatch (self, m, doc): + return doc.createElement(self.tag) + class BacktickPattern (Pattern): def __init__ (self, pattern): Pattern.__init__(self, pattern) self.tag = "code" - def handleMatch(self, m, doc) : + def handleMatch(self, m, doc): el = doc.createElement(self.tag) text = m.group(2).strip() #text = text.replace("&", "&") @@ -720,9 +734,9 @@ class BacktickPattern (Pattern): return el -class DoubleTagPattern (SimpleTagPattern) : +class DoubleTagPattern (SimpleTagPattern): - def handleMatch(self, m, doc) : + def handleMatch(self, m, doc): tag1, tag2 = self.tag.split(",") el1 = doc.createElement(tag1) el2 = doc.createElement(tag2) @@ -733,23 +747,25 @@ class DoubleTagPattern (SimpleTagPattern) : class HtmlPattern (Pattern): - def handleMatch (self, m, doc) : - place_holder = self.stash.store(m.group(2)) + def handleMatch (self, m, doc): + rawhtml = m.group(2) + inline = True + place_holder = self.stash.store(rawhtml) return doc.createTextNode(place_holder) class LinkPattern (Pattern): - def handleMatch(self, m, doc) : + def handleMatch(self, m, doc): el = doc.createElement('a') el.appendChild(doc.createTextNode(m.group(2))) parts = m.group(9).split('"') # We should now have [], [href], or [href, title] - if parts : + if parts: el.setAttribute('href', parts[0].strip()) - else : + else: el.setAttribute('href', "") - if len(parts) > 1 : + if len(parts) > 1: # we also got a title title = '"' + '"'.join(parts[1:]).strip() title = dequote(title) #.replace('"', """) @@ -762,10 +778,13 @@ class ImagePattern (Pattern): def handleMatch(self, m, doc): el = doc.createElement('img') src_parts = m.group(9).split() - el.setAttribute('src', src_parts[0]) - if len(src_parts) > 1 : + if src_parts: + el.setAttribute('src', src_parts[0]) + else: + el.setAttribute('src', "") + if len(src_parts) > 1: el.setAttribute('title', dequote(" ".join(src_parts[1:]))) - if ENABLE_ATTRIBUTES : + if ENABLE_ATTRIBUTES: text = doc.createTextNode(m.group(2)) el.appendChild(text) text.handleAttributes() @@ -780,14 +799,14 @@ class ReferencePattern (Pattern): def handleMatch(self, m, doc): - if m.group(9) : + if m.group(9): id = m.group(9).lower() - else : + else: # if we got something like "[Google][]" # we'll use "google" as the id id = m.group(2).lower() - if not self.references.has_key(id) : # ignore undefined refs + if not self.references.has_key(id): # ignore undefined refs return None href, title = self.references[id] text = m.group(2) @@ -796,7 +815,7 @@ class ReferencePattern (Pattern): def makeTag(self, href, title, text, doc): el = doc.createElement('a') el.setAttribute('href', href) - if title : + if title: el.setAttribute('title', title) el.appendChild(doc.createTextNode(text)) return el @@ -807,7 +826,7 @@ class ImageReferencePattern (ReferencePattern): def makeTag(self, href, title, text, doc): el = doc.createElement('img') el.setAttribute('src', href) - if title : + if title: el.setAttribute('title', title) el.setAttribute('alt', text) return el @@ -823,7 +842,7 @@ class AutolinkPattern (Pattern): class AutomailPattern (Pattern): - def handleMatch(self, m, doc) : + def handleMatch(self, m, doc): el = doc.createElement('a') email = m.group(2) if email.startswith("mailto:"): @@ -849,6 +868,9 @@ EMPHASIS_PATTERN_2 = SimpleTagPattern(EMPHASIS_2_RE, 'em') STRONG_EM_PATTERN = DoubleTagPattern(STRONG_EM_RE, 'strong,em') STRONG_EM_PATTERN_2 = DoubleTagPattern(STRONG_EM_2_RE, 'strong,em') +LINE_BREAK_PATTERN = SubstituteTagPattern(LINE_BREAK_RE, 'br ') +LINE_BREAK_PATTERN_2 = SubstituteTagPattern(LINE_BREAK_2_RE, 'br ') + LINK_PATTERN = LinkPattern(LINK_RE) LINK_ANGLED_PATTERN = LinkPattern(LINK_ANGLED_RE) IMAGE_LINK_PATTERN = ImagePattern(IMAGE_LINK_RE) @@ -878,40 +900,87 @@ There are currently no standard post-processors, but the footnote extension below uses one. """ -class Postprocessor : +class Postprocessor: pass +""" +====================================================================== +======================== TEXT-POST-PROCESSORS ======================== +====================================================================== + +Markdown also allows text-post-processors, which are similar to +textpreprocessors in that they need to implement a "run" method. +Unlike post-processors, they take a text string as a parameter and +should return a string. + +Text-Post-Processors should extend markdown.Postprocessor. + +""" + + +class RawHtmlTextPostprocessor(Postprocessor): + + def __init__(self): + pass + + def run(self, text): + for i in range(self.stash.html_counter): + html, safe = self.stash.rawHtmlBlocks[i] + if self.safeMode and not safe: + if str(self.safeMode).lower() == 'escape': + html = self.escape(html) + elif str(self.safeMode).lower() == 'remove': + html = '' + else: + html = HTML_REMOVED_TEXT + + text = text.replace("

%s\n

" % (HTML_PLACEHOLDER % i), + html + "\n") + text = text.replace(HTML_PLACEHOLDER % i, html) + return text + + def escape(self, html): + ''' Basic html escaping ''' + html = html.replace('&', '&') + html = html.replace('<', '<') + html = html.replace('>', '>') + return html.replace('"', '"') + +RAWHTMLTEXTPOSTPROCESSOR = RawHtmlTextPostprocessor() + """ ====================================================================== ========================== MISC AUXILIARY CLASSES ==================== ====================================================================== """ -class HtmlStash : +class HtmlStash: """This class is used for stashing HTML objects that we extract in the beginning and replace with place-holders.""" - def __init__ (self) : + def __init__ (self): self.html_counter = 0 # for counting inline html segments self.rawHtmlBlocks=[] - def store(self, html) : + def store(self, html, safe=False): """Saves an HTML segment for later reinsertion. Returns a placeholder string that needs to be inserted into the document. @param html: an html segment + @param safe: label an html segment as safe for safemode + @param inline: label a segmant as inline html @returns : a placeholder string """ - self.rawHtmlBlocks.append(html) + self.rawHtmlBlocks.append((html, safe)) placeholder = HTML_PLACEHOLDER % self.html_counter self.html_counter += 1 return placeholder -class BlockGuru : +class BlockGuru: - def _findHead(self, lines, fn, allowBlank=0) : + def _findHead(self, lines, fn, allowBlank=0): """Functional magic to help determine boundaries of indented blocks. @@ -925,10 +994,11 @@ class BlockGuru : remainder of the original list""" items = [] - + item = -1 + i = 0 # to keep track of where we are - for line in lines : + for line in lines: if not line.strip() and not allowBlank: return items, lines[i:] @@ -938,11 +1008,11 @@ class BlockGuru : i += 1 # Find the next non-blank line - for j in range(i, len(lines)) : - if lines[j].strip() : + for j in range(i, len(lines)): + if lines[j].strip(): next = lines[j] break - else : + else: # There is no more text => this is the end break @@ -950,36 +1020,36 @@ class BlockGuru : part = fn(next) - if part : + if part: items.append("") continue - else : + else: break # found end of the list part = fn(line) - if part : + if part: items.append(part) i += 1 continue - else : + else: return items, lines[i:] - else : + else: i += 1 return items, lines[i:] - def detabbed_fn(self, line) : + def detabbed_fn(self, line): """ An auxiliary method to be passed to _findHead """ m = RE.regExp['tabbed'].match(line) if m: return m.group(4) - else : + else: return None - def detectTabbed(self, lines) : + def detectTabbed(self, lines): return self._findHead(lines, self.detabbed_fn, allowBlank = 1) @@ -990,12 +1060,12 @@ def print_error(string): sys.stderr.write(string +'\n') -def dequote(string) : +def dequote(string): """ Removes quotes from around a string """ if ( ( string.startswith('"') and string.endswith('"')) - or (string.startswith("'") and string.endswith("'")) ) : + or (string.startswith("'") and string.endswith("'")) ): return string[1:-1] - else : + else: return string """ @@ -1008,13 +1078,13 @@ see first if you can do it via pre-processors, post-processors, inline patterns or a combination of the three. """ -class CorePatterns : +class CorePatterns: """This class is scheduled for removal as part of a refactoring effort.""" patterns = { 'header': r'(#*)([^#]*)(#*)', # # A title - 'reference-def' : r'(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)', + 'reference-def': r'(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)', # [Google]: http://www.google.com/ 'containsline': r'([-]*)$|^([=]*)', # -----, =====, etc. 'ol': r'[ ]{0,3}[\d]*\.\s+(.*)', # 1. text @@ -1023,13 +1093,13 @@ class CorePatterns : 'isline2': r'(\-*)', # --- 'isline3': r'(\_*)', # ___ 'tabbed': r'((\t)|( ))(.*)', # an indented line - 'quoted' : r'> ?(.*)', # a quoted block ("> ...") + 'quoted': r'> ?(.*)', # a quoted block ("> ...") } - def __init__ (self) : + def __init__ (self): self.regExp = {} - for key in self.patterns.keys() : + for key in self.patterns.keys(): self.regExp[key] = re.compile("^%s$" % self.patterns[key], re.DOTALL) @@ -1043,66 +1113,68 @@ class Markdown: Markdown text """ - def __init__(self, source=None, # deprecated + def __init__(self, source=None, # depreciated extensions=[], extension_configs=None, - encoding="utf-8", safe_mode = False): """Creates a new Markdown instance. - @param source: The text in Markdown format. - @param encoding: The character encoding of . """ + @param source: The text in Markdown format. Depreciated! + @param extensions: A list if extensions. + @param extension-configs: Configuration setting for extensions. + @param safe_mode: Disallow raw html. """ - self.safeMode = safe_mode - self.encoding = encoding self.source = source + if source is not None: + message(WARN, "The `source` arg of Markdown.__init__() is depreciated and will be removed in the future. Use `instance.convert(source)` instead.") + self.safeMode = safe_mode self.blockGuru = BlockGuru() self.registeredExtensions = [] self.stripTopLevelTags = 1 self.docType = "" - self.textPreprocessors = [HTML_BLOCK_PREPROCESSOR] - self.preprocessors = [ - HEADER_PREPROCESSOR, - LINE_PREPROCESSOR, - LINE_BREAKS_PREPROCESSOR, - # A footnote preprocessor will - # get inserted here - REFERENCE_PREPROCESSOR ] + self.preprocessors = [HEADER_PREPROCESSOR, + LINE_PREPROCESSOR, + # A footnote preprocessor will + # get inserted here + REFERENCE_PREPROCESSOR] self.postprocessors = [] # a footnote postprocessor will get # inserted later - self.textPostprocessors = [] # a footnote postprocessor will get - # inserted later + self.textPostprocessors = [# a footnote postprocessor will get + # inserted here + RAWHTMLTEXTPOSTPROCESSOR] self.prePatterns = [] - self.inlinePatterns = [ DOUBLE_BACKTICK_PATTERN, - BACKTICK_PATTERN, - ESCAPE_PATTERN, - IMAGE_LINK_PATTERN, - IMAGE_REFERENCE_PATTERN, - REFERENCE_PATTERN, - LINK_ANGLED_PATTERN, - LINK_PATTERN, - AUTOLINK_PATTERN, - AUTOMAIL_PATTERN, - HTML_PATTERN, - ENTITY_PATTERN, - NOT_STRONG_PATTERN, - STRONG_EM_PATTERN, - STRONG_EM_PATTERN_2, - STRONG_PATTERN, - STRONG_PATTERN_2, - EMPHASIS_PATTERN, - EMPHASIS_PATTERN_2 - # The order of the handlers matters!!! - ] + self.inlinePatterns = [DOUBLE_BACKTICK_PATTERN, + BACKTICK_PATTERN, + ESCAPE_PATTERN, + REFERENCE_PATTERN, + LINK_ANGLED_PATTERN, + LINK_PATTERN, + IMAGE_LINK_PATTERN, + IMAGE_REFERENCE_PATTERN, + AUTOLINK_PATTERN, + AUTOMAIL_PATTERN, + #LINE_BREAK_PATTERN_2, Removed by Kovid as causes problems with mdx_tables + LINE_BREAK_PATTERN, + HTML_PATTERN, + ENTITY_PATTERN, + NOT_STRONG_PATTERN, + STRONG_EM_PATTERN, + STRONG_EM_PATTERN_2, + STRONG_PATTERN, + STRONG_PATTERN_2, + EMPHASIS_PATTERN, + EMPHASIS_PATTERN_2 + # The order of the handlers matters!!! + ] self.registerExtensions(extensions = extensions, configs = extension_configs) @@ -1110,26 +1182,27 @@ class Markdown: self.reset() - def registerExtensions(self, extensions, configs) : + def registerExtensions(self, extensions, configs): - if not configs : + if not configs: configs = {} - for ext in extensions : + for ext in extensions: extension_module_name = "libprs500.ebooks.markdown.mdx_" + ext - try : + try: module = sys.modules[extension_module_name] - except : + + except: message(CRITICAL, "couldn't load extension %s (looking for %s module)" % (ext, extension_module_name) ) - else : + else: - if configs.has_key(ext) : + if configs.has_key(ext): configs_for_ext = configs[ext] - else : + else: configs_for_ext = [] extension = module.makeExtension(configs_for_ext) @@ -1138,24 +1211,27 @@ class Markdown: - def registerExtension(self, extension) : + def registerExtension(self, extension): """ This gets called by the extension """ self.registeredExtensions.append(extension) - def reset(self) : + def reset(self): """Resets all state variables so that we can start with a new text.""" self.references={} self.htmlStash = HtmlStash() HTML_BLOCK_PREPROCESSOR.stash = self.htmlStash + LINE_PREPROCESSOR.stash = self.htmlStash REFERENCE_PREPROCESSOR.references = self.references HTML_PATTERN.stash = self.htmlStash ENTITY_PATTERN.stash = self.htmlStash REFERENCE_PATTERN.references = self.references IMAGE_REFERENCE_PATTERN.references = self.references + RAWHTMLTEXTPOSTPROCESSOR.stash = self.htmlStash + RAWHTMLTEXTPOSTPROCESSOR.safeMode = self.safeMode - for extension in self.registeredExtensions : + for extension in self.registeredExtensions: extension.reset() @@ -1173,7 +1249,7 @@ class Markdown: self.doc.appendChild(self.top_element) # Fixup the source text - text = self.source #.strip() + text = self.source text = text.replace("\r\n", "\n").replace("\r", "\n") text += "\n\n" text = text.expandtabs(TAB_LENGTH) @@ -1191,11 +1267,11 @@ class Markdown: buffer = [] - for line in self.lines : - if line.startswith("#") : + for line in self.lines: + if line.startswith("#"): self._processSection(self.top_element, buffer) buffer = [line] - else : + else: buffer.append(line) self._processSection(self.top_element, buffer) @@ -1205,14 +1281,14 @@ class Markdown: self.top_element.appendChild(self.doc.createTextNode('\n')) # Run the post-processors - for postprocessor in self.postprocessors : + for postprocessor in self.postprocessors: postprocessor.run(self.doc) return self.doc def _processSection(self, parent_elem, lines, - inList = 0, looseList = 0) : + inList = 0, looseList = 0): """Process a section of a source document, looking for high level structural elements like lists, block quotes, code @@ -1226,21 +1302,23 @@ class Markdown: @param inList: a level @returns: None""" + # Loop through lines until none left. while lines: + # Check if this section starts with a list, a blockquote or # a code block - - processFn = { 'ul' : self._processUList, - 'ol' : self._processOList, - 'quoted' : self._processQuote, - 'tabbed' : self._processCodeBlock } - - for regexp in ['ul', 'ol', 'quoted', 'tabbed'] : + + processFn = { 'ul': self._processUList, + 'ol': self._processOList, + 'quoted': self._processQuote, + 'tabbed': self._processCodeBlock} + + for regexp in ['ul', 'ol', 'quoted', 'tabbed']: m = RE.regExp[regexp].match(lines[0]) - if m : + if m: processFn[regexp](parent_elem, lines, inList) return - + # We are NOT looking at one of the high-level structures like # lists or blockquotes. So, it's just a regular paragraph # (though perhaps nested inside a list or something else). If @@ -1255,68 +1333,75 @@ class Markdown: # Another paragraph of the list. This is where we are now. # * Underneath we might have a sublist. # - - if inList : - start, lines = self._linesUntil(lines, (lambda line: + + if inList: + + start, lines = self._linesUntil(lines, (lambda line: RE.regExp['ul'].match(line) or RE.regExp['ol'].match(line) or not line.strip())) - + self._processSection(parent_elem, start, inList - 1, looseList = looseList) - self._processSection(parent_elem, lines, - inList - 1, looseList = looseList) - - - else : # Ok, so it's just a simple block - + inList = inList-1 + + else: # Ok, so it's just a simple block + paragraph, lines = self._linesUntil(lines, lambda line: - 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!") - - elif paragraph : - list = self._handleInlineWrapper("\n".join(paragraph)) - - if ( parent_elem.nodeName == 'li' - and not (looseList or parent_elem.childNodes)): - - #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) - + not line.strip()) + + if len(paragraph) and paragraph[0].startswith('#'): + self._processHeader(parent_elem, paragraph) + + elif paragraph: + self._processParagraph(parent_elem, paragraph, + inList, looseList) + if lines and not lines[0].strip(): lines = lines[1:] # skip the first (blank) line - - def _processUList(self, parent_elem, lines, inList) : + 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!") + + + def _processParagraph(self, parent_elem, paragraph, inList, looseList): + list = self._handleInlineWrapper("\n".join(paragraph)) + + 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, listexpr='ul', tag = 'ul') - def _processOList(self, parent_elem, lines, inList) : + def _processOList(self, parent_elem, lines, inList): self._processList(parent_elem, lines, inList, listexpr='ol', tag = 'ol') - def _processList(self, parent_elem, lines, inList, listexpr, tag) : + def _processList(self, parent_elem, lines, inList, listexpr, tag): """Given a list of document lines starting with a list item, finds the end of the list, breaks it up, and recursively processes each list item and the remainder of the text file. @@ -1337,20 +1422,20 @@ class Markdown: i = 0 # a counter to keep track of where we are - for line in lines : + for line in lines: loose = 0 - if not line.strip() : + if not line.strip(): # If we see a blank line, this _might_ be the end of the list i += 1 loose = 1 # Find the next non-blank line - for j in range(i, len(lines)) : - if lines[j].strip() : + for j in range(i, len(lines)): + if lines[j].strip(): next = lines[j] break - else : + else: # There is no more text => end of the list break @@ -1362,7 +1447,7 @@ class Markdown: items[item].append(line.strip()) looseList = loose or looseList continue - else : + else: break # found end of the list # Now we need to detect list items (at the current level) @@ -1371,26 +1456,26 @@ class Markdown: for expr in ['ul', 'ol', 'tabbed']: m = RE.regExp[expr].match(line) - if m : - if expr in ['ul', 'ol'] : # We are looking at a new item + if m: + if expr in ['ul', 'ol']: # We are looking at a new item #if m.group(1) : # Removed the check to allow for a blank line # at the beginning of the list item items.append([m.group(1)]) item += 1 - elif expr == 'tabbed' : # This line needs to be detabbed + elif expr == 'tabbed': # This line needs to be detabbed items[item].append(m.group(4)) #after the 'tab' i += 1 break - else : + else: items[item].append(line) # Just regular continuation i += 1 # added on 2006.02.25 - else : + else: i += 1 # Add the dom elements - for item in items : + for item in items: li = self.doc.createElement("li") ul.appendChild(li) @@ -1401,21 +1486,21 @@ class Markdown: self._processSection(parent_elem, lines[i:], inList) - def _linesUntil(self, lines, condition) : + def _linesUntil(self, lines, condition): """ A utility function to break a list of lines upon the first line that satisfied a condition. The condition argument should be a predicate function. """ i = -1 - for line in lines : + for line in lines: i += 1 - if condition(line) : break - else : + if condition(line): break + else: i += 1 return lines[:i], lines[i:] - def _processQuote(self, parent_elem, lines, inList) : + def _processQuote(self, parent_elem, lines, inList): """Given a list of document lines starting with a quote finds the end of the quote, unindents it and recursively processes the body of the quote and the remainder of the @@ -1428,15 +1513,22 @@ class Markdown: dequoted = [] i = 0 - for line in lines : + blank_line = False # allow one blank line between paragraphs + for line in lines: m = RE.regExp['quoted'].match(line) - if m : + if m: dequoted.append(m.group(1)) i += 1 - else : + blank_line = False + elif not blank_line and line.strip() != '': + dequoted.append(line) + i += 1 + elif not blank_line and line.strip() == '': + dequoted.append(line) + i += 1 + blank_line = True + else: break - else : - i += 1 blockquote = self.doc.createElement('blockquote') parent_elem.appendChild(blockquote) @@ -1447,7 +1539,7 @@ class Markdown: - def _processCodeBlock(self, parent_elem, lines, inList) : + def _processCodeBlock(self, parent_elem, lines, inList): """Given a list of document lines starting with a code block finds the end of the block, puts it into the dom verbatim wrapped in ("

") and recursively processes the
@@ -1471,32 +1563,35 @@ class Markdown:
 
 
 
-    def _handleInlineWrapper (self, line) :
+    def _handleInlineWrapper (self, line, patternIndex=0):
 
         parts = [line]
 
-        for pattern in self.inlinePatterns :
+        while patternIndex < len(self.inlinePatterns):
 
             i = 0
 
-            while i < len(parts) :
+            while i < len(parts):
                 
                 x = parts[i]
 
-                if isinstance(x, (str, unicode)) :
-                    result = self._applyPattern(x, pattern)
+                if isinstance(x, (str, unicode)):
+                    result = self._applyPattern(x, \
+                                self.inlinePatterns[patternIndex], \
+                                patternIndex)
 
-                    if result :
+                    if result:
                         i -= 1
                         parts.remove(x)
-                        for y in result :
+                        for y in result:
                             parts.insert(i+1,y)
 
                 i += 1
+            patternIndex += 1
 
-        for i in range(len(parts)) :
+        for i in range(len(parts)):
             x = parts[i]
-            if isinstance(x, (str, unicode)) :
+            if isinstance(x, (str, unicode)):
                 parts[i] = self.doc.createTextNode(x)
 
         return parts
@@ -1515,13 +1610,13 @@ class Markdown:
         if not(line):
             return [self.doc.createTextNode(' ')]
 
-        for pattern in self.inlinePatterns :
+        for pattern in self.inlinePatterns:
             list = self._applyPattern( line, pattern)
             if list: return list
 
         return [self.doc.createTextNode(line)]
 
-    def _applyPattern(self, line, pattern) :
+    def _applyPattern(self, line, pattern, patternIndex=0):
 
         """ Given a pattern name, this function checks if the line
         fits the pattern, creates the necessary elements, and returns
@@ -1540,7 +1635,7 @@ class Markdown:
 
 
         m = pattern.getCompiledRegExp().match(line)
-        if not m :
+        if not m:
             return None
 
         # if we got a match let the pattern make us a NanoDom node
@@ -1551,15 +1646,15 @@ class Markdown:
 
         if isinstance(node, Element):
 
-            if not node.nodeName in ["code", "pre"] :
-                for child in node.childNodes :
+            if not node.nodeName in ["code", "pre"]:
+                for child in node.childNodes:
                     if isinstance(child, TextNode):
                         
-                        result = self._handleInlineWrapper(child.value)
+                        result = self._handleInlineWrapper(child.value, patternIndex+1)
                         
                         if result:
 
-                            if result == [child] :
+                            if result == [child]:
                                 continue
                                 
                             result.reverse()
@@ -1581,74 +1676,61 @@ class Markdown:
 
 
 
-        if node :
+        if node:
             # Those are in the reverse order!
             return ( m.groups()[-1], # the string to the left
                      node,           # the new node
                      m.group(1))     # the string to the right of the match
 
-        else :
+        else:
             return None
 
     def convert (self, source = None):
         """Return the document in XHTML format.
 
         @returns: A serialized XHTML body."""
-        #try :
 
-        if source :
+        if source is not None: #Allow blank string
             self.source = source
 
-        if not self.source :
-            return ""
+        if not self.source:
+            return u""
 
-        self.source = removeBOM(self.source, self.encoding)
+        try:
+            self.source = unicode(self.source)
+        except UnicodeDecodeError:
+            message(CRITICAL, 'UnicodeDecodeError: Markdown only accepts unicode or ascii  input.')
+            return u""
 
         for pp in self.textPreprocessors:
             self.source = pp.run(self.source)
-        
+
         doc = self._transform()
         xml = doc.toxml()
 
-        #finally:
-        #    doc.unlink()
 
-        # Let's stick in all the raw html pieces
+        # Return everything but the top level tag
 
-        for i in range(self.htmlStash.html_counter) :
-            html = self.htmlStash.rawHtmlBlocks[i]
-            if self.safeMode and html != "
" and html != "
": - html = HTML_REMOVED_TEXT - - xml = xml.replace("

%s\n

" % (HTML_PLACEHOLDER % i), - html + "\n") - xml = xml.replace(HTML_PLACEHOLDER % i, - html) - - # And return everything but the top level tag - - if self.stripTopLevelTags : + if self.stripTopLevelTags: xml = xml.strip()[23:-7] + "\n" - for pp in self.textPostprocessors : + for pp in self.textPostprocessors: xml = pp.run(xml) return (self.docType + xml).strip() - __str__ = convert # deprecated - will be changed in 1.7 to report - # information about the MD instance - - toString = __str__ # toString() method is deprecated + def __str__(self): + ''' Report info about instance. Markdown always returns unicode. ''' + if self.source is None: + status = 'in which no source text has been assinged.' + else: + status = 'which contains %d chars and %d line(s) of source.'%\ + (len(self.source), self.source.count('\n')+1) + return 'An instance of "%s" %s'% (self.__class__, status) + __unicode__ = convert # markdown should always return a unicode string - def __unicode__(self): - """Return the document in XHTML format as a Unicode object. - """ - return str(self)#.decode(self.encoding) - - - toUnicode = __unicode__ # deprecated - will be removed in 1.7 @@ -1660,46 +1742,46 @@ def markdownFromFile(input = None, extensions = [], encoding = None, message_threshold = CRITICAL, - safe = False) : + safe = False): - global MESSAGE_THRESHOLD - MESSAGE_THRESHOLD = message_threshold + global console_hndlr + console_hndlr.setLevel(message_threshold) - message(VERBOSE, "input file: %s" % input) + message(DEBUG, "input file: %s" % input) - - if not encoding : + if not encoding: encoding = "utf-8" input_file = codecs.open(input, mode="r", encoding=encoding) text = input_file.read() input_file.close() - new_text = markdown(text, extensions, encoding, safe_mode = safe) + text = removeBOM(text, encoding) - if output : + new_text = markdown(text, extensions, safe_mode = safe) + + if output: output_file = codecs.open(output, "w", encoding=encoding) output_file.write(new_text) output_file.close() - else : + else: sys.stdout.write(new_text.encode(encoding)) def markdown(text, extensions = [], - encoding = None, - safe_mode = False) : + safe_mode = False): - message(VERBOSE, "in markdown.markdown(), received text:\n%s" % text) + message(DEBUG, "in markdown.markdown(), received text:\n%s" % text) extension_names = [] extension_configs = {} - for ext in extensions : + for ext in extensions: pos = ext.find("(") - if pos == -1 : + if pos == -1: extension_names.append(ext) - else : + else: name = ext[:pos] extension_names.append(name) pairs = [x.split("=") for x in ext[pos+1:-1].split(",")] @@ -1713,21 +1795,21 @@ def markdown(text, return md.convert(text) -class Extension : +class Extension: - def __init__(self, configs = {}) : + def __init__(self, configs = {}): self.config = configs - def getConfig(self, key) : - if self.config.has_key(key) : + def getConfig(self, key): + if self.config.has_key(key): return self.config[key][0] - else : + else: return "" - def getConfigInfo(self) : + def getConfigInfo(self): return [(key, self.config[key][1]) for key in self.config.keys()] - def setConfig(self, key, value) : + def setConfig(self, key, value): self.config[key][0] = value @@ -1739,20 +1821,20 @@ For lower versions of Python use: """ % EXECUTABLE_NAME_FOR_USAGE -def parse_options() : +def parse_options(): - try : + try: optparse = __import__("optparse") - except : - if len(sys.argv) == 2 : - return {'input' : sys.argv[1], - 'output' : None, - 'message_threshold' : CRITICAL, - 'safe' : False, - 'extensions' : [], - 'encoding' : None } + except: + if len(sys.argv) == 2: + return {'input': sys.argv[1], + 'output': None, + 'message_threshold': CRITICAL, + 'safe': False, + 'extensions': [], + 'encoding': None } - else : + else: print OPTPARSE_WARNING return None @@ -1764,63 +1846,45 @@ def parse_options() : parser.add_option("-e", "--encoding", dest="encoding", help="encoding for input and output files",) parser.add_option("-q", "--quiet", default = CRITICAL, - action="store_const", const=NONE, dest="verbose", + action="store_const", const=60, dest="verbose", help="suppress all messages") parser.add_option("-v", "--verbose", action="store_const", const=INFO, dest="verbose", help="print info messages") - parser.add_option("-s", "--safe", - action="store_const", const=True, dest="safe", - help="same mode (strip user's HTML tag)") + parser.add_option("-s", "--safe", dest="safe", default=False, + metavar="SAFE_MODE", + help="same mode ('replace', 'remove' or 'escape' user's HTML tag)") parser.add_option("--noisy", - action="store_const", const=VERBOSE, dest="verbose", + action="store_const", const=DEBUG, dest="verbose", help="print debug messages") parser.add_option("-x", "--extension", action="append", dest="extensions", help = "load extension EXTENSION", metavar="EXTENSION") (options, args) = parser.parse_args() - if not len(args) == 1 : + if not len(args) == 1: parser.print_help() return None - else : + else: input_file = args[0] - if not options.extensions : + if not options.extensions: options.extensions = [] - return {'input' : input_file, - 'output' : options.filename, - 'message_threshold' : options.verbose, - 'safe' : options.safe, - 'extensions' : options.extensions, - 'encoding' : options.encoding } + return {'input': input_file, + 'output': options.filename, + 'message_threshold': options.verbose, + 'safe': options.safe, + 'extensions': options.extensions, + 'encoding': options.encoding } def main(): options = parse_options() - - #if os.access(inFile, os.R_OK): - - if not options : - sys.exit(0) - + if not options: + return 0 markdownFromFile(**options) - - return 0 - if __name__ == '__main__': """ Run Markdown from the command line. """ - sys.exit(main()) - - - - - - - - - - - + sys.exit(main) \ No newline at end of file