Metadata-Version: 1.0
Name: markdownify
Version: 0.4.0
Summary: Convert HTML to markdown.
Home-page: http://github.com/matthewwithanm/python-markdownify
Author: Matthew Tretter
Author-email: m@tthewwithanm.com
License: UNKNOWN
Download-URL: http://github.com/matthewwithanm/python-markdownify/tarball/master
Description: Installation
        ============
        
        ``pip install markdownify``
        
        
        Usage
        =====
        
        Convert some HTML to Markdown:
        
        .. code:: python
        
            from markdownify import markdownify as md
            md('<b>Yay</b> <a href="http://github.com">GitHub</a>')  # > '**Yay** [GitHub](http://github.com)'
        
        Specify tags to exclude (blacklist):
        
        .. code:: python
        
            from markdownify import markdownify as md
            md('<b>Yay</b> <a href="http://github.com">GitHub</a>', strip=['a'])  # > '**Yay** GitHub'
        
        \...or specify the tags you want to include (whitelist):
        
        .. code:: python
        
            from markdownify import markdownify as md
            md('<b>Yay</b> <a href="http://github.com">GitHub</a>', convert=['b'])  # > '**Yay** GitHub'
        
        
        Development
        ===========
        
        To run tests:
        
        ``python setup.py test``
        
        To lint:
        
        ``python setup.py lint``
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Utilities
