Metadata-Version: 1.1
Name: django-pygmentify
Version: 0.1
Summary: A Django template filter application to highlight code with Pygments
Home-page: https://github.com/richardcornish/django-pygmentify
Author: Richard Cornish
Author-email: rich@richardcornish.com
License: BSD License
Description: Django Pygmentify
        *****************
        
        |PyPI version|_ |Build status|_
        
        .. |PyPI version| image::
           https://badge.fury.io/py/django-pygmentify.svg
        .. _PyPI version: https://pypi.python.org/pypi/django-pygmentify
        
        .. |Build status| image::
           https://travis-ci.org/richardcornish/django-pygmentify.svg?branch=master
        .. _Build status: https://travis-ci.org/richardcornish/django-pygmentify
        
        **Django Pygmentify** is a `Django template filter <https://docs.djangoproject.com/en/1.10/howto/custom-template-tags/>`_ application to highlight code with `Pygments <http://pygments.org/>`_.
        
        It is an alternative to `Django Pygments <https://github.com/od-eon/django-pygments>`_, which hasn't been updated in several years.
        
        * `Package distribution <https://pypi.python.org/pypi/django-pygmentify>`_
        * `Code repository <https://github.com/richardcornish/django-pygmentify>`_
        * `Documentation <https://django-pygmentify.readthedocs.io/>`_
        * `Tests <https://travis-ci.org/richardcornish/django-pygmentify>`_
        
        Install
        =======
        
        .. code-block:: bash
        
           $ pip install django-pygmentify
        
        Add to ``settings.py``.
        
        .. code-block:: python
        
           INSTALLED_APPS = [
               # ...
               'pygmentify',
           ]
        
        Usage
        =====
        
        .. code-block:: html
        
           {% load pygmentify_tags %}
        
           <link rel="stylesheet" href="{% pygmentify_css %}">
           
           {% pygmentify %}
           <pre class="python">
               print('Hello, world!')
           </pre>
           {% endpygmentify %}
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Utilities
