Metadata-Version: 1.1
Name: django-misaka
Version: 0.1
Summary: A Django template tag for rendering Markdown (by Misaka Markdown parser).
Home-page: http://github.com/jietu/django-misaka/
Author: Jie Tu
Author-email: jietu@python-taiwan.org
License: MIT
Description: Django-Misaka
        -------------
        
        Now this app only provide filter, the tag and Misaka API will soon.
        
        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::
        
            {% load markdown %}
            ...
            {{ text|markdown|safe }}
        
        
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
