Metadata-Version: 1.0
Name: mdxflavours
Version: 0.9
Summary: Markdown extensions for basic syntax flavoring.
Home-page: https://github.com/05bit/python-mdxflavours
Author: Alexey Kinyov
Author-email: rudy@05bit.com
License: BSD
Description: ============
        Installation
        ============
        
        Get source from GitHub_::
        
        	$ git clone git://github.com/05bit/python-mdxflavours.git
        
        and add mdxflavours to PYTHONPATH::
        
            $ export PYTHONPATH=$PYTHONPATH:$(pwd)/mdxflavours/
        
        or::
        
            $ cd mdxflavours
            $ python setup.py install
        
        Note: importing package ``mdxflavours`` automatically adds required
        path to system paths.
        
        =====
        Usage
        =====
        
        Example for auto line breaks::
        
        	>>> import markdown
        	>>> markdown.markdown(u'And may the force  \nbe with you!') # no extension
        	>>> u'<p>And may the force<br />\nbe with you!</p>'
        	>>> markdown.markdown(u'And may the force\nbe with you!', extensions=['autobr'])
        	>>> u'<p>And may the force<br />\nbe with you!</p>'
        
        ====================
        Available extensions
        ====================
        
        At the moment 2 extensions available:
        
        	1. autobr
        	2. autolink
        
        .. _GitHub: https://github.com/05bit/python-mdxflavours
Keywords: markdown,extensions
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Markup :: HTML
