Metadata-Version: 1.1
Name: panflute
Version: 1.9.3
Summary: Pythonic Pandoc filters
Home-page: https://github.com/sergiocorreia/panflute
Author: Sergio Correia
Author-email: sergio.correia@gmail.com
License: BSD3
Description: Panflute: Pythonic Pandoc Filters
        =================================
        
        |Python version| |PyPI version| |Development Status| |Build Status|
        
        `panflute <http://scorreia.com/software/panflute/>`__ is a Python
        package that makes creating Pandoc filters fun.
        
        For a detailed user guide, documentation, and installation instructions,
        see http://scorreia.com/software/panflute/ (or the `PDF
        version <http://scorreia.com/software/panflute/Panflute.pdf>`__). If you
        want to contribute, head `here </CONTRIBUTING.md>`__.
        
        Install
        -------
        
        To install panflute, open the command line and type:
        
        .. code:: bash
        
            pip install panflute
        
        -  Support Python 2.7, 3.3 or later, pypy, and pypy3.
        -  On windows, the command line (``cmd``) must be run as administrator.
        
        Alternatively, if you use Python3 only, you can install it with
        
        .. code:: bash
        
            pip install git+git://github.com/sergiocorreia/panflute.git
        
        An advantage of this later installation method is that it has better
        autocomplete hints:
        
        .. figure:: https://cloud.githubusercontent.com/assets/214056/21284243/76c922f8-c3e4-11e6-8d2d-03c2d30b3737.png
           :alt: autocomplete
        
           autocomplete
        
        Uninstall
        ---------
        
        ::
        
            pip uninstall panflute
        
        Dev Install
        -----------
        
        After cloning the repo and opening the panflute folder:
        
        ``python setup.py install``
            installs the package locally
        ``python setup.py develop``
            installs locally with a symlink so changes are automatically updated
        
        Contributing
        ------------
        
        Feel free to submit push requests. For consistency, code should comply
        with `pep8 <https://pypi.python.org/pypi/pep8>`__ (as long as its
        reasonable), and with the style guides by
        [@kennethreitz](http://docs.python-guide.org/en/latest/writing/style/)
        and `google <http://google.github.io/styleguide/pyguide.html>`__. Read
        more `here </CONTRIBUTING.md>`__.
        
        License
        -------
        
        BSD3 license (following ``pandocfilters`` by @jgm).
        
        .. |Python version| image:: https://img.shields.io/pypi/pyversions/panflute.svg
           :target: https://pypi.python.org/pypi/panflute/
        .. |PyPI version| image:: https://img.shields.io/pypi/v/panflute.svg
           :target: https://pypi.python.org/pypi/panflute/
        .. |Development Status| image:: https://img.shields.io/pypi/status/panflute.svg
           :target: https://pypi.python.org/pypi/panflute/
        .. |Build Status| image:: https://travis-ci.org/sergiocorreia/panflute.svg?branch=master
           :target: https://travis-ci.org/sergiocorreia/panflute
        
Keywords: pandoc pandocfilters markdown latex
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Filters
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
