Skip to main content

A set of Django helpers that make it easier to get up and running quickly with django-markupfield

Project description

django-markupfield-helpers is a set of Django helpers that make it easier to get up and running quickly with django-markupfield.

Source code is available on GitHub at mfcovington/django-markupfield-helpers. Information about django-markupfield is available on GitHub.

Installation

PyPI

pip install django-markupfield-helpers

GitHub (development branch)

pip install git+http://github.com/mfcovington/django-markupfield-helpers.git@develop

Configuration

Add markupfield_helpers to INSTALLED_APPS in settings.py:

INSTALLED_APPS = (
    ...
    'markupfield_helpers',
)

Add a link to the CSS file for syntax highlighting in base.html or in a specific template.

{% load staticfiles %}

<link rel="stylesheet" type="text/css" href="{% static 'markupfield_helpers/css/syntax-highlighting.css' %}">

markupfield_helpers can be left out of INSTALLED_APPS if the provided CSS for syntax highlighting is not needed.

Helpers

MarkupField

The MarkupField class from markupfield_helpers can be used in place of the class of the same name from markupfield.

The markupfield_helpers version comes with four markup types defined:

  • Markdown (Default): Markdown 2 with extras (code-friendly, cuddled-lists, fenced-code-blocks, footnotes, and tables)

  • Markdown Basic: Markdown 2 without extras

  • Plain Text

  • reStructuredText

Here is a basic example of how to use the markupfield_helpers version of MarkupField:

from django.db import models
from markupfield_helpers.helpers import MarkupField

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

MARKUP_FIELD_TYPES

Alternatively, MARKUP_FIELD_TYPES can be imported from markupfield_helpers.helpers and used as-is or modified. This is equivalent to the code above:

from django.db import models
from markupfield.fields import MarkupField
from markupfield_helpers.helpers import MARKUP_FIELD_TYPES


class Article(models.Model):
    title = models.CharField(max_length=100)
    slug = models.SlugField(max_length=100)
    body = MarkupField(
        default_markup_type='Markdown',
        markup_choices=MARKUP_FIELD_TYPES,
    )

Issues

If you experience any problems or would like to request a feature, please create an issue on GitHub.

Version 0.1.1

Revision History

0.1.0 2018-12-01

  • A set of Django helpers that make it easier to get up and running quickly with django-markupfield

0.1.1 2018-12-01

  • Fix manifest to include static CSS file

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-helpers-0.1.1.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

django_markupfield_helpers-0.1.1-py33-none-any.whl (6.8 kB view hashes)

Uploaded Python 3.3

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