Metadata-Version: 1.1
Name: Markdown2PDF
Version: 0.1.4
Summary: A tool converts Markdown file to PDF, originally designed for developers' resume release.
Home-page: https://github.com/kxxoling/markdown2pdf
Author: Kane Blueriver
Author-email: kxxoling@gmail.com
License: MIT
Description: Markdown2PDF
        ============
        
        Markdown2pdf is a command-line tool to convert markdown file into pdf,
        was originally designed for myself to create resume.
        
        
        Installation
        ------------
        
        To install Markdown2PDF you may need to install PDF convertion tool first,
        
        Install Markdown2PDF by pip:
        
        .. code-block:: shell
        
            pip install markdown2pdf
        
        
        Usage
        -----
        
        You can use Markdown2PDF via simple command ``md2pdf``:
        
        .. code-block:: shell
        
            md2pdf resume.md
        
        You can also appoint a theme by argument ``--theme``:
        
        .. code-block:: shell
        
            md2pdf resume.md --theme=github
        
        Or, you can even using your self defined theme:
        
        .. code-block:: shell
        
            md2pdf resume.md --theme=path_to_style.css
        
        By now, Markdown2PDF contains multi builtin themes:
        
        * github (from GitHub.Inc)
        
        * solarized-dark (from mixu/markdown-styles)
        
        * ghostwriter (from mixu/markdown-styles)
        
        
        Trouble shooting
        ----------------
        
        1. ``ffi.h no such file or directory``
        
        .. code-block:: shell
        
            apt-get install libffi-dev
        
Platform: any
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
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
