Metadata-Version: 1.1
Name: python-markdown-pretty
Version: 1.0.1
Summary: Code pretty  extension for python-markdown
Home-page: https://github.com/joywek/python-markdown-pretty
Author: Joywek
Author-email: joywek@gmail.com
License: BSD License
Description: Code Pretty Extension for Python Markdown
        =====================================================
        
        Adds enhenced code/syntax highlighting to standard Python-Markdown code blocks.
        
        ## Installation
        
        ```sh
        pip install python-markdown-pretty
        ```
        
        ## Usage
        
        To use (with caution), simply do:
        
        ```python
        import markdown
        
        code = r'''
        ```c
        int main(int argc, char* argv[]) {
            return 0;
        }
        ```'''
        
        md = markdown.Markdown(extensions=['pretty'])
        print md.convert(code)
        ```
        
        
Keywords: markdown pygments
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup
