Metadata-Version: 1.0
Name: pyandoc
Version: 0.0.1
Summary: Python wrapper for Pandoc - the universal document converter
Home-page: http://github.com/kennethreitz/pyandoc
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: MIT
Description: Pyandoc: a simple Pandoc wrapper for Python
        
        
        Requirements
        ++++++++++++
        
        * Pandoc
        
        
        Usage
        +++++
        
        Get setup. ::
        
        	import pandoc
        	
        	pandoc.PANDOC_PATH = '/usr/bin/pandoc'
        
        
        Let's start with a Markdown document: ::
        
        	
        	doc = pandoc.Document()
        	doc.markdown = '''
        	# I am an H1 Tag 
        	
        	* bullet point
        	* more points
        	* point with [link](http://kennethreitz.com)!
        	'''
        	
        Now let's convert that into a ReST document: ::
        
        	>>> print doc.rst
        	
        	I am an H1 Tag
        	==============
        
        
        	-  bullet point
        	-  more points
        	-  point with `link <http://kennethreitz.com>`_!
        
        Enjoy.
        
        
        Roadmap
        +++++++
        
        * Cleanup
        * Figure out epub, odt support
        * Figure out better path management
        * Proper Exceptions
        * Unit testing
        * CI
        
        
        v 0.0.1 (01-02-2010)
        ++++++++++++++++++++
        
        * Initial release
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
