Metadata-Version: 1.1
Name: pypandoc
Version: 0.5.2
Summary: Thin wrapper for pandoc.
Home-page: https://github.com/bebraw/pypandoc
Author: Juho Vepsäläinen
Author-email: bebraw@gmail.com
License: MIT
Description: pypandoc
        ========
        
        pypandoc provides a thin wrapper for
        `pandoc <http://johnmacfarlane.net/pandoc/>`__, a universal document
        converter. Use it as follows:
        
        ::
        
            import pypandoc
        
            output = pypandoc.convert('somefile.md', 'rst')
        
            # alternatively you could just pass some string to it and define its format
            output = pypandoc.convert('#some title', 'rst', format='md')
        
        The code infers pandoc ``--from`` format automatically based on given
        file extension unless one is provided explicitly. ``extra_args``
        parameter makes it possible to access various pandoc options. Please
        refer to ``pandoc -h`` and the `official
        documentation <http://johnmacfarlane.net/pandoc/README.html>`__ for
        further details.
        
        See also `pyandoc <http://pypi.python.org/pypi/pyandoc/>`__.
        
        Contributors
        ------------
        
        -  `Valentin Haenel <https://github.com/esc>`__ - String conversion fix
        
        License
        -------
        
        pypandoc is available under MIT license. See LICENSE for more details.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Filters
