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.
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
Custom forms:
from django_markdown.widgets import MarkdownWidget class MyCustomForm(forms.Form): content = forms.CharField( widget=MarkdownWidget() )
Custom admins:
from django_markdown.admin import MarkdownModelAdmin adimin.site.register(MyModel, MarkdownModelAdmin)
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)), ]
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:
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.
Copyright
Copyright (c) 2011 Kirill Klenov (horneds@gmail.com)
- Markitup:
(c) 2008 Jay Salvat http://markitup.jaysalvat.com/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-markdown-0.2.2.tar.gz
.
File metadata
- Download URL: django-markdown-0.2.2.tar.gz
- Upload date:
- Size: 60.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd4ff5741a84a3fd521b2ff348d2eb18513bbcca653e2349b5e460b6ee002746 |
|
MD5 | 2c2cbea4a98a027536bbb2ff93b5273f |
|
BLAKE2b-256 | fcb8b53634aa156e91e42d728ba67f1cc4a5e510e937b91e81ea2bb220f5eab3 |