Skip to main content

Hallo WYSIWYG Markdown widget for Django

Project description

A hallo js markdown editor wrapper for Django. Made for use in FeinCMS, supports multiple editors on the same page.

Installation

You can install django-hallo-markdown either via the Python Package Index (PyPI) or from source.

To install using pip,:

$ pip install -U django-hallo-markdown

To install using easy_install,:

$ easy_install -U django-hallo-markdown

Example Usage with FeinCMS

from django import forms
from django.utils.translation import ugettext_lazy as _
from django.contrib.markup.templatetags.markup import markdown
from django.db import models

from feincms.module.page.models import Page
from feincms.admin.item_editor import ItemEditorForm

from djhallo.widgets import HalloInput


class MarkdownContentAdminForm(ItemEditorForm):
    content = forms.CharField(widget=HalloInput(),
        required=False, label=_('text'))


class MarkdownPageContent(models.Model):

    form = MarkdownContentAdminForm
    feincms_item_editor_form = MarkdownContentAdminForm

    content = models.TextField()

    class Meta:
        abstract = True

    def render(self, **kwargs):
        return markdown(self.content)

Page.create_content_type(MarkdownPageContent)

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-hallo-markdown-0.1.1.tar.gz (24.4 kB view hashes)

Uploaded Source

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