Metadata-Version: 1.1
Name: django-misaka
Version: 0.2.0
Summary: A Django template tag for rendering Markdown (by Misaka Markdown parser).
Home-page: http://github.com/chiehtu/django-misaka/
Author: Chieh Tu
Author-email: me@chiehtu.net
License: MIT
Description: Django-Misaka
        -------------
        
        Now this app provide template filter and tag, Misaka API is not yet available.
        
        Installation
        ------------
        
        1) Install from PyPI::
        
            pip install django-misaka
        
        2) Add ``django_misaka`` to your ``INSTALLED_APPS``::
        
            INSTALLED_APPS = (
                ...
                'django_misaka',
            )
        
        Usage
        -----
        
        In your template
        
        - Template filter::
        
            {% load markdown %}
            ...
            {{ text|markdown|safe }}
        
        - Template tag::
        
            {% load markdown %}
            ...
            {% markdown %}
                ...
            {% endmarkdown %}
        
        Change log
        ----------
        v0.2.0
        ^^^^^^
        - Add template tag.
        - Function ``markdown`` was renamed ``markdown_filter``.
        - Update information for author (setup.py).
        
        v0.1.0
        ^^^^^^
        - First version, it's only provides template filter.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
