/usr/lib/python2.6/site-packages/markdown/extensions
Edit: /usr/lib/python2.6/site-packages/markdown/extensions/abbr.pyo (4294B)
Ñò
«QsXc @ sÅ d Z d d k Z d d k Z d d k l Z e i d ƒ Z d e i f d „ ƒ YZ d e i i f d „ ƒ YZ
d e i i f d
„ ƒ YZ
d d „ Z e d j o d d k Z e i ƒ n d S(
s
Abbreviation Extension for Python-Markdown
==========================================
This extension adds abbreviation handling to Python-Markdown.
Simple Usage:
>>> import markdown
>>> text = """
... Some text with an ABBR and a REF. Ignore REFERENCE and ref.
...
... *[ABBR]: Abbreviation
... *[REF]: Abbreviation Reference
... """
>>> markdown.markdown(text, ['abbr'])
u'
Some text with an ABBR and a REF. Ignore REFERENCE and ref.
'
Copyright 2007-2008
* [Waylan Limberg](http://achinghead.com/)
* [Seemant Kulleen](http://www.kulleen.org/)
iÿÿÿÿN( t etrees, [*]\[(?P
[^\]]*)\][ ]?:\s*(?P.*)t
AbbrExtensionc B s e Z d Z d „ Z RS( s- Abbreviation Extension for Python-Markdown. c C s | i i d t | ƒ d ƒ d S( s7 Insert AbbrPreprocessor before ReferencePreprocessor. t abbrs