#!/usr/bin/env python ''' WikiLink Extention for Python-Markdown ====================================== Converts CamelCase words to relative links. Requires Python-Markdown 1.6+ Basic usage: >>> import markdown >>> text = "Some text with a WikiLink." >>> md = markdown.markdown(text, ['wikilink']) >>> md u'
Some text with a WikiLink.\\n
' To define custom settings the simple way: >>> md = markdown.markdown(text, ... ['wikilink(base_url=/wiki/,end_url=.html,html_class=foo)'] ... ) >>> md u'Some text with a WikiLink.\\n
' Custom settings the complex way: >>> md = markdown.Markdown( ... extensions = ['wikilink'], ... extension_configs = {'wikilink': [ ... ('base_url', 'http://example.com/'), ... ('end_url', '.html'), ... ('html_class', '') ]}, ... safe_mode = True) >>> md.convert(text) u'Some text with a WikiLink.\\n
' Use MetaData with mdx_meta.py (Note the blank html_class in MetaData): >>> text = """wiki_base_url: http://example.com/ ... wiki_end_url: .html ... wiki_html_class: ... ... Some text with a WikiLink.""" >>> md = markdown.Markdown(extensions=['meta', 'wikilink']) >>> md.convert(text) u'Some text with a WikiLink.\\n
' MetaData should not carry over to next document: >>> md.convert("No MetaData here.") u'No MetaData here.\\n
' From the command line: python markdown.py -x wikilink(base_url=http://example.com/,end_url=.html,html_class=foo) src.txt By [Waylan Limberg](http://achinghead.com/). Project website: http://achinghead.com/markdown-wikilinks/ Contact: waylan [at] gmail [dot] com License: [BSD](http://www.opensource.org/licenses/bsd-license.php) Version: 0.6 (May 2, 2008) Dependencies: * [Python 2.3+](http://python.org) * [Markdown 1.6+](http://www.freewisdom.org/projects/python-markdown/) ''' import markdown from markdown import etree class WikiLinkExtension (markdown.Extension) : def __init__(self, configs): # set extension defaults self.config = { 'base_url' : ['/', 'String to append to beginning or URL.'], 'end_url' : ['/', 'String to append to end of URL.'], 'html_class' : ['wikilink', 'CSS hook. Leave blank for none.'] } # Override defaults with user settings for key, value in configs : self.setConfig(key, value) def extendMarkdown(self, md, md_globals): self.md = md # append to end of inline patterns WIKILINK_RE = r'''(?P