wagtailmarkdownblock

Wagtail Markdown Block provides PrismJS Markdown conversion in Wagtail.


License
BSD-3-Clause
Install
pip install wagtailmarkdownblock==0.3.1

Documentation

Wagtail Markdown Block

PLEASE NOTE: Future development on this package will be limited, since most of the features are now included in the new Draftail editor available in Wagtail. Thank you to everyone who contributed!

Markdown blocks for Wagtail Streamfields.

This Django app uses the SimpleMDE Markdown editor in the Wagtail Admin and the website.

Example Usage

from wagtailmarkdownblock.blocks import MarkdownBlock

class ContentStreamBlock(StreamBlock):
    paragraph = RichTextBlock()
    heading = TextBlock()
    code = MarkdownBlock()

Contributors