Metadata-Version: 1.1
Name: wordpress2markdown
Version: 0.39
Summary: A script to convert wordpress.com html into markdown.
Home-page: https://bitbucket.org/davidcorne/wordpress-to-markdown
Author: David Corne
Author-email: davidcorne@gmail.com
License: GPLv3
Description: Wordpress To Markdown
        =====================
        
        This is a script to convert wordpress.com style html (including sourcecode) into github flavour markdown.
        
        Script Usage
        ============
        
        usage: Wordpress2Markdown [-h] [-f] wordpress_html
        
        This script converts wordpress.com html into markdown syntax.
        
        positional arguments:
          wordpress_html
        
        optional arguments:
          -h, --help      show this help message and exit
          -f, --file      Read the Wordpress.com html from a file
        
        How it works
        ============
        
        This passes over the text several times, converting a different
        construction on each pass.
        
        Passes
        ------
        
        1. &lt;h[1,2,3,4,5,6]> tags -> #, ##, ###, ####, #####, ###### pairs
        2. &lt;a href="url">title</a> -> \[title](url)
        3. [sourcecode language="lang"] -> ```lang 
        4. [/sourcecode] -> ```
        5. &lt;!-- --> comments deleted, mainly due to &lt;!--more--> tags.
        
        Note converting [sourcecode] tags currently ignores any option but language.
        
        Unimplemented features:
        -----------------------
        
        - ordered/unordered lists
        - images
        
Keywords: wordpress html markdown convert utility
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
