Skip to main content

Django markdown support and wysiwyg.

Project description

Django markdown is django application that allows use markdown wysiwyg in flatpages, admin forms and other forms. Documentaton available at pypi or github.

Build Status Coveralls Version Downloads Donate

Requirements

  • python >= 2.6

  • django >= 1.4

  • markdown

Installation

Django markdown should be installed using pip:

pip install django-markdown

Setup

  • Add ‘django_markdown’ to INSTALLED_APPS

    INSTALLED_APPS += ( 'django_markdown', )
  • Add django_markdown urls to base urls

    url('^markdown/', include( 'django_markdown.urls')),

Use django_markdown

  1. Custom forms:

    from django_markdown.widgets import MarkdownWidget
    class MyCustomForm(forms.Form):
        content = forms.CharField( widget=MarkdownWidget() )
  2. Custom admins:

    from django_markdown.admin import MarkdownModelAdmin
    admin.site.register(MyModel, MarkdownModelAdmin)
  3. Flatpages:

    # in your project main urls
    from django_markdown import flatpages
    ...
    # Django admin
    admin.autodiscover()
    flatpages.register()
    urlpatterns += [ url(r'^admin/', include(admin.site.urls)), ]
  4. JavaScript API:

    // Editors manager ``miu`` methods
    
    // Initialize editor using default settings extended with ``extraSettings``
    miu.init(textareaId, extraSettings);
    
    // Get default mIu settings
    miu.settings();
    
    // Set default mIu settings
    miu.settings(newSettings);
    
    // Get all initialized aditors
    miu.editors();
    
    // Get certain editor
    miu.editors(textareaId);
    
    
    // Editor instance methods
    
    // Dynamically add button at ``index`` position
    editor.addButton(conf, index)
    
    // Dynamically remove button at ``index`` position
    editor.removeButton(index)

Settings

MARKDOWN_EDITOR_SKIN - skin option, default value is markitup

Example: settings.py

MARKDOWN_EDITOR_SKIN = 'simple'

MARKDOWN_EDITOR_SETTINGS - holds the extra parameters set to be passed to textarea.markItUp()

Changes

Make sure you`ve read the following document if you are upgrading from previous versions:

http://packages.python.org/django-markdown/changes.html

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/django_markdown/issues

Contributing

Development of django-markdown happens at github: https://github.com/klen/django_markdown

Contributors

License

Licensed under a GNU lesser general public license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-markdown-0.2.3.tar.gz (60.3 kB view details)

Uploaded Source

File details

Details for the file django-markdown-0.2.3.tar.gz.

File metadata

File hashes

Hashes for django-markdown-0.2.3.tar.gz
Algorithm Hash digest
SHA256 4c295013cef88d372f159f9936cce8cb13086896be3c4b32d3a0520c1bbf69c9
MD5 79843ee502de8bca8697745e7cd03b75
BLAKE2b-256 89ea95abf7a052d8a67eb77259293cf31b2026ed0eb87bb2136778f9c4b2482f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page