From 1f675dafafe4c50552f0d28ed6efaf164492e6e2 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Mon, 13 Oct 2008 22:06:03 -0400 Subject: Updated meta-data extension to recent refactor. --- markdown_extensions/meta.py | 57 ++++++++++++++++++++++++++------------------- 1 file changed, 33 insertions(+), 24 deletions(-) (limited to 'markdown_extensions') diff --git a/markdown_extensions/meta.py b/markdown_extensions/meta.py index 30dea8a..52b71d9 100644 --- a/markdown_extensions/meta.py +++ b/markdown_extensions/meta.py @@ -1,35 +1,44 @@ #!usr/bin/python -''' +""" Meta Data Extension for Python-Markdown -========================================== +======================================= This extension adds Meta Data handling to markdown. +Basic Usage: + >>> import markdown - >>> text = """Title: A Test Doc. + >>> text = '''Title: A Test Doc. ... Author: Waylan Limberg ... John Doe ... Blank_Data: ... ... The body. This is paragraph one. - ... """ - >>> md = markdown.Markdown(text, ['meta']) - >>> md.convert() - u'

The body. This is paragraph one.\\n

' + ... ''' + >>> md = markdown.Markdown(['meta']) + >>> md.convert(text) + u'

The body. This is paragraph one.

' >>> md.Meta {u'blank_data': [u''], u'author': [u'Waylan Limberg', u'John Doe'], u'title': [u'A Test Doc.']} Make sure text without Meta Data still works (markdown < 1.6b returns a

). >>> text = ' Some Code - not extra lines of meta data.' - >>> md = markdown.Markdown(text, ['meta']) - >>> md.convert() + >>> md = markdown.Markdown(['meta']) + >>> md.convert(text) u'

Some Code - not extra lines of meta data.\\n
' >>> md.Meta {} -''' +Copyright 2007-2008 [Waylan Limberg](http://achinghead.com). + +Project website: +Contact: markdown@freewisdom.org + +License: BSD (see ../docs/LICENSE for details) + +""" import markdown, re @@ -37,20 +46,20 @@ import markdown, re META_RE = re.compile(r'^[ ]{0,3}(?P[A-Za-z0-9_-]+):\s*(?P.*)') META_MORE_RE = re.compile(r'^[ ]{4,}(?P.*)') -class MetaExtension (markdown.Extension) : - def __init__(self, configs): - pass +class MetaExtension (markdown.Extension): + """ Meta-Data extension for Python-Markdown. """ - def extendMarkdown(self, md, md_globals) : - self.md = md + def extendMarkdown(self, md, md_globals): + """ Add MetaPreprocessor to Markdown instance. """ - # Insert meta preprocessor first - META_PREPROCESSOR = MetaPreprocessor() - META_PREPROCESSOR.md = md - md.preprocessors.insert(0, META_PREPROCESSOR) - -class MetaPreprocessor(markdown.Preprocessor) : - def run(self, lines) : + md.preprocessors.add("meta", MetaPreprocessor(md), "_begin") + + +class MetaPreprocessor(markdown.Preprocessor): + """ Get Meta-Data. """ + + def run(self, lines): + """ Parse Meta-Data and store in Markdown.Meta. """ meta = {} key = None while 1: @@ -69,11 +78,11 @@ class MetaPreprocessor(markdown.Preprocessor) : else: lines.insert(0, line) break # no meta data - done - self.md.Meta = meta + self.markdown.Meta = meta return lines -def makeExtension(configs=None) : +def makeExtension(configs={}): return MetaExtension(configs=configs) if __name__ == "__main__": -- cgit v1.2.3