aboutsummaryrefslogtreecommitdiffstats
path: root/markdown_extensions
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2008-10-13 22:06:03 -0400
committerWaylan Limberg <waylan@gmail.com>2008-10-13 22:06:03 -0400
commit1f675dafafe4c50552f0d28ed6efaf164492e6e2 (patch)
tree50b9ac45e9fe2f6cc2c4e7368ce02832218b6b14 /markdown_extensions
parent0ef2c7633f38377a7d2de0ac079c433372339581 (diff)
downloadmarkdown-1f675dafafe4c50552f0d28ed6efaf164492e6e2.tar.gz
markdown-1f675dafafe4c50552f0d28ed6efaf164492e6e2.tar.bz2
markdown-1f675dafafe4c50552f0d28ed6efaf164492e6e2.zip
Updated meta-data extension to recent refactor.
Diffstat (limited to 'markdown_extensions')
-rw-r--r--markdown_extensions/meta.py57
1 files changed, 33 insertions, 24 deletions
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'<p>The body. This is paragraph one.\\n</p>'
+ ... '''
+ >>> md = markdown.Markdown(['meta'])
+ >>> md.convert(text)
+ u'<p>The body. This is paragraph one.</p>'
>>> 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 <p>).
>>> text = ' Some Code - not extra lines of meta data.'
- >>> md = markdown.Markdown(text, ['meta'])
- >>> md.convert()
+ >>> md = markdown.Markdown(['meta'])
+ >>> md.convert(text)
u'<pre><code>Some Code - not extra lines of meta data.\\n</code></pre>'
>>> md.Meta
{}
-'''
+Copyright 2007-2008 [Waylan Limberg](http://achinghead.com).
+
+Project website: <http://www.freewisdom.org/project/python-markdown/Meta-Data>
+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<key>[A-Za-z0-9_-]+):\s*(?P<value>.*)')
META_MORE_RE = re.compile(r'^[ ]{4,}(?P<value>.*)')
-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__":