Skip to main content

Custom Django field for easy use of markup in text fields

Project description

https://travis-ci.org/jamesturk/django-markupfield.svg?branch=master https://pypip.in/version/django-markupfield/badge.svg https://pypip.in/format/django-markupfield/badge.svg

An implementation of a custom MarkupField for Django. A MarkupField is in essence a TextField with an associated markup type. The field also caches its rendered value on the assumption that disk space is cheaper than CPU cycles in a web application.

Installation

The recommended way to install django-markupfield is with pip

It is not necessary to add 'markupfield' to your INSTALLED_APPS, it merely needs to be on your PYTHONPATH. However, to use titled markup you either add 'markupfield' to your INSTALLED_APPS or add the corresponding translations to your project translation.

Requirements

django-markupfield 1.3 is the last release to support Django 1.4 or Python 3.3, the development version is only tested on Django 1.7 and 1.8 with Python 2.7 and 3.4

Settings

To best make use of MarkupField you should define the MARKUP_FIELD_TYPES setting, a mapping of strings to callables that ‘render’ a markup type:

import markdown
from docutils.core import publish_parts

def render_rest(markup):
    parts = publish_parts(source=markup, writer_name="html4css1")
    return parts["fragment"]

MARKUP_FIELD_TYPES = (
    ('markdown', markdown.markdown),
    ('ReST', render_rest),
)

If you do not define a MARKUP_FIELD_TYPES then one is provided with the following markup types available:

html:

allows HTML, potentially unsafe

plain:

plain text markup, calls urlize and replaces text with linebreaks

markdown:

default markdown renderer (only if python-markdown is installed)

restructuredtext:

default ReST renderer (only if docutils is installed)

textile:

default textile renderer (only if textile is installed)

It is also possible to override MARKUP_FIELD_TYPES on a per-field basis by passing the markup_choices option to a MarkupField in your model declaration.

Usage

Using MarkupField is relatively easy, it can be used in any model definition:

from django.db import models
from markupfield.fields import MarkupField

class Article(models.Model):
    title = models.CharField(max_length=100)
    slug = models.SlugField(max_length=100)
    body = MarkupField()

Article objects can then be created with any markup type defined in MARKUP_FIELD_TYPES:

Article.objects.create(title='some article', slug='some-article',
                       body='*fancy*', body_markup_type='markdown')

You will notice that a field named body_markup_type exists that you did not declare, MarkupField actually creates two extra fields here body_markup_type and _body_rendered. These fields are always named according to the name of the declared MarkupField.

Arguments

MarkupField also takes three optional arguments. Either default_markup_type and markup_type arguments may be specified but not both.

default_markup_type:

Set a markup_type that the field will default to if one is not specified. It is still possible to edit the markup type attribute and it will appear by default in ModelForms.

markup_type:

Set markup type that the field will always use, editable=False is set on the hidden field so it is not shown in ModelForms.

markup_choices:

A replacement list of markup choices to be used in lieu of MARKUP_FIELD_TYPES on a per-field basis.

escape_html:

A flag (False by default) indicating that the input should be regarded as untrusted and as such will be run through Django’s escape filter.

Examples

MarkupField that will default to using markdown but allow the user a choice:

MarkupField(default_markup_type='markdown')

MarkupField that will use textile and not provide a choice on forms:

MarkupField(markup_type='textile')

MarkupField that will use a custom set of renderers:

CUSTOM_RENDERERS = (
    ('markdown', markdown.markdown),
    ('wiki', my_wiki_render_func)
)
MarkupField(markup_choices=CUSTOM_RENDERERS)

Accessing a MarkupField on a model

When accessing an attribute of a model that was declared as a MarkupField a special Markup object is returned. The Markup object has three parameters:

raw:

The unrendered markup.

markup_type:

The markup type.

rendered:

The rendered HTML version of raw, this attribute is read-only.

This object has a __unicode__ method that calls django.utils.safestring.mark_safe on rendered allowing MarkupField objects to appear in templates as their rendered selfs without any template tag or having to access rendered directly.

Assuming the Article model above:

>>> a = Article.objects.all()[0]
>>> a.body.raw
u'*fancy*'
>>> a.body.markup_type
u'markdown'
>>> a.body.rendered
u'<p><em>fancy</em></p>'
>>> print unicode(a.body)
<p><em>fancy</em></p>

Assignment to a.body is equivalent to assignment to a.body.raw and assignment to a.body_markup_type is equivalent to assignment to a.body.markup_type.

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-markupfield-1.3.4.tar.gz (13.3 kB view details)

Uploaded Source

Built Distributions

django_markupfield-1.3.4-py2.py3-none-any.whl (17.1 kB view details)

Uploaded Python 2 Python 3

django_markupfield-1.3.4-py2-none-any.whl (17.1 kB view details)

Uploaded Python 2

File details

Details for the file django-markupfield-1.3.4.tar.gz.

File metadata

File hashes

Hashes for django-markupfield-1.3.4.tar.gz
Algorithm Hash digest
SHA256 5bd02e50fa0c73aa5d683bf53f8411173b00dac9cf9f7876d2363f427e351653
MD5 e03aee5fc2b0d7b00f11c4a38bd0f5be
BLAKE2b-256 fe2137b1e55dc0b672566a1de9f6cc686a9b2e0f7d8268c236b5342023d2755e

See more details on using hashes here.

File details

Details for the file django_markupfield-1.3.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_markupfield-1.3.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d675d4feaac51bf0e2fda6f803fbd6d9c87097c487c7e53c9220e674dc32c171
MD5 58cda1ef958f539e03f0b7563bd03e86
BLAKE2b-256 8176a55722dde3b24de3c6607e22ff9ff18142d206e47aae5c1fc4ec83055f39

See more details on using hashes here.

File details

Details for the file django_markupfield-1.3.4-py2-none-any.whl.

File metadata

File hashes

Hashes for django_markupfield-1.3.4-py2-none-any.whl
Algorithm Hash digest
SHA256 87496b1b63b7c547081f73d90029da2dfb1fe3a69940c5d1572eccebd1d79cd4
MD5 0ab6e985b4d47c8a13398df7cb94f285
BLAKE2b-256 e501609368d87facd12f9c678dc319bc97a09b64f8870df8a7ef551fd36e4323

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