Metadata-Version: 1.1
Name: django-bootstrap-markdown
Version: 1.6.1
Summary: An extension of the Django Textarea widget made for
    editing Markdown with a live preview.
Home-page: http://thegoods.aj7may.com/django-bootstrap-markdown
Author: A.J. May
Author-email: aj7may@gmail.com
License: MIT License
Description: Django Bootstrap Markdown Editor
        ================================
        
        A beautiful Markdown editor with a side by side preview
        -------------------------------------------------------
        
        An extension of the Django Textarea widget made for editing
        `Markdown <http://daringfireball.net/projects/markdown/>`__ with a live
        preview.
        
        .. figure:: http://thegoods.aj7may.com/content/images/2013/Dec/Screen_Shot_2013_12_21_at_2_39_47_PM.png
           :alt: Example
        
           Example
        Install:
        ~~~~~~~~
        
        ``> pip install django-bootstrap-markdown``
        
        Usage:
        ~~~~~~
        
        -  Add ``django-bootstrap-markdown`` to the installed apps of your
           Django Project
        -  Instead of using the django ``Textarea`` widget use the
           ``MarkdownInput``
        -  Be sure to include the form's required media in the template. *ie.*
           ``{{ form.media }}``
        -  Also be sure to include `Twitter
           Bootstrap <http://getbootstrap.com/>`__
        -  Include the markdown urls:
        
        *urls.py*
        
        ::
        
            urlpatterns = patterns('',
                ...
                url(r'^markdown/', include('django_bootstrap_markdown.urls')),
                ...
            )
        
        Example:
        ~~~~~~~~
        
        *forms.py*
        
        ::
        
            from django import forms
            from django_bootstrap_markdown.widgets import MarkdownInput
        
            class PostForm(forms.Form):
                title = forms.CharField()
                markdown = forms.CharField( widget=MarkdownInput )
        
        
Keywords: django bootstrap markdown live preview auto scroll
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
