Metadata-Version: 1.1
Name: django-markdowny
Version: 0.1.2
Summary: A Django template tag to convert Markdown to HTML
Home-page: https://github.com/richardcornish/django-markdowny
Author: Richard Cornish
Author-email: rich@richardcornish.com
License: BSD
Description: Django Markdowny
        ****************
        
        |PyPI version|_ |Build status|_
        
        .. |PyPI version| image::
           https://badge.fury.io/py/django-markdowny.svg
        .. _PyPI version: https://pypi.python.org/pypi/django-markdowny
        
        .. |Build status| image::
           https://travis-ci.org/richardcornish/django-markdowny.svg?branch=master
        .. _Build status: https://travis-ci.org/richardcornish/django-markdowny
        
        **Django Markdowny** is a `Django <https://www.djangoproject.com/>`_ `template tag <https://docs.djangoproject.com/en/1.11/howto/custom-template-tags/>`_ application to convert `Markdown <http://daringfireball.net/projects/markdown/>`_ to HTML.
        
        Unlike other Django/Markdown filters, Markdowny supports all of the options available in `Python Markdown <https://pythonhosted.org/Markdown/reference.html>`_ via `settings <https://django-markdowny.readthedocs.io/en/latest/settings.html>`_.
        
        * `Package distribution <https://pypi.python.org/pypi/django-markdowny>`_
        * `Code repository <https://github.com/richardcornish/django-markdowny>`_
        * `Documentation <https://django-markdowny.readthedocs.io/>`_
        * `Tests <https://travis-ci.org/richardcornish/django-markdowny>`_
        
        Install
        =======
        
        .. code-block:: bash
        
           $ pip install django-markdowny
        
        Add to ``settings.py``.
        
        .. code-block:: python
        
           INSTALLED_APPS = [
               # ...
               'markdowny',
           ]
        
        Usage
        =====
        
        Use as a template tag.
        
        .. code-block:: django
        
           {% load markdowny_tags %}
        
           {% markdowny %}Hello, world!{% endmarkdowny %}
        
        Or as a template filter.
        
        .. code-block:: django
        
           {{ post.body|markdowny }}
        
        Result:
        
        .. code-block:: html
        
           <p>Hello, world!</p>
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
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
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
