Skip to main content

Django-Markdown v. 2.0.0 ########################

.. _description:

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

.. _badges:

.. image:: http://img.shields.io/travis/klen/django_markdown.svg?style=flat-square :target: https://travis-ci.org/github/been-there-done-that :alt: Build Status

.. image:: http://img.shields.io/coveralls/klen/django_markdown.svg?style=flat-square :target: https://coveralls.io/r/klen/django_markdown :alt: Coverals

.. image:: http://img.shields.io/pypi/v/django_markdown.svg?style=flat-square :target: https://pypi.python.org/pypi/django_markdown-2 :alt: Version

.. image:: http://img.shields.io/pypi/dm/django_markdown.svg?style=flat-square :target: https://pypi.python.org/pypi/django_markdown-2 :alt: Downloads

.. image:: http://img.shields.io/pypi/l/django_markdown.svg?style=flat-square :target: https://pypi.python.org/pypi/django_markdown-2 :alt: License

.. image:: http://img.shields.io/gratipay/klen.svg?style=flat-square :target: https://www.gratipay.com/klen/ :alt: Donate

.. contents::

.. _requirements:

Requirements

  • python >= 3.6
  • django >= 1.8
  • markdown

.. _installation:

Installation

Django markdown should be installed using pip: ::

pip install django-markdown

Setup

.. note:: 'django_markdown' require 'django.contrib.staticfiles' in INSTALLED_APPS

  • Add 'django_markdown' to INSTALLED_APPS ::

    'django_markdown',

  • Add django_markdown urls to base urls ::

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

Use django_markdown

#) Models: ::

from django_markdown.models import MarkdownField
class MyModel(models.Model):
    content = MarkdownField()

#) Custom forms: ::

from django_markdown.fields import MarkdownFormField
from django_markdown.widgets import MarkdownWidget
class MyCustomForm(forms.Form):
    content = forms.CharField(widget=MarkdownWidget())
    content2 = MarkdownFormField()

#) Custom admins: ::

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

#) Admin Overrides: (If you don't want to subclass package ModelAdmin's) ::

from django.contrib import admin

class YourModelAdmin(admin.ModelAdmin):
    formfield_overrides = {MarkdownField: {'widget': AdminMarkdownWidget}}

#) Flatpages: ::

# in your project main urls
from django_markdown import flatpages
...

# Django admin
admin.autodiscover()
flatpages.register()

urlpatterns += [ re_path(r'^admin/', include(admin.site.urls)), ]

#) Template tags: ::

<textarea name="test" id="new"></textarea>
{% markdown_editor "#new" %}
{% markdown_media %}

Settings

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

MARKDOWN_EDITOR_SKIN - skin option, default value is markitup

Example: settings.py ::

MARKDOWN_EDITOR_SKIN = 'simple'

MARKDOWN_EXTENSIONS - optional list of extensions passed to Markdown, discussed at https://pythonhosted.org/Markdown/extensions/index.html#officially-supported-extensions

Example: settings.py ::

MARKDOWN_EXTENSIONS = ['extra']

MARKDOWN_EXTENSION_CONFIGS - Configure extensions, discussed at https://pythonhosted.org/Markdown/reference.html#extension_configs

MARKDOWN_PREVIEW_TEMPLATE - Template for preview a markdown. By default django_markdown/preview.css

MARKDOWN_STYLE - path to preview styles. By default django_markdown/preview.css

MARKDOWN_SET_PATH - path to folder with sets. By default django_markdown/sets

MARKDOWN_SET_NAME - name for current set. By default markdown.

MARKDOWN_PROTECT_PREVIEW - protect preview url for staff only

Examples

Execute make run in sources directory. Open http://127.0.0.1:8000 in your browser. For admin access use 'root:root' credentials.

Changes

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

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

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/been-there-done-that/django_markdown-2/issues

Contributing

Development of django-markdown happens at github: https://github.com/been-there-done-that/django_markdown-2

Contributors

  • Deesh_ (Jagadeeswara_Reddy_p)

License

Licensed under a GNU lesser general public license_.

Copyright

Copyright (c) 2021 Deesh Reddy (internetwasmyidea@gmail.com)

Markitup_: (c) 2008 Jay Salvat http://markitup.jaysalvat.com/

.. _GNU lesser general public license: http://www.gnu.org/copyleft/lesser.html .. _pypi: http://packages.python.org/django-markdown-2/ .. _Markitup: http://markitup.jaysalvat.com/ .. _github: https://github.com/been-there-done-that/django_markdown .. _Deesh: https://github.com/been-there-done-that

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-2-2.0.0.tar.gz (77.8 kB view details)

Uploaded Source

File details

Details for the file django-markdown-2-2.0.0.tar.gz.

File metadata

  • Download URL: django-markdown-2-2.0.0.tar.gz
  • Upload date:
  • Size: 77.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.5

File hashes

Hashes for django-markdown-2-2.0.0.tar.gz
Algorithm Hash digest
SHA256 7c2ffa3a62fe0b3fbc3a9809c22b31af41f33218246c9d43b7d3b82e66be7c4d
MD5 fcd467934f4fa0148c42e18a5105e422
BLAKE2b-256 b060da9888da6dea2a535521994e35c8a66970f2e179903727c6f34be3b55d57

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.0 This release

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page