Metadata-Version: 2.1
Name: wagtailmarkdownblock
Version: 0.3.2
Summary: Wagtail Markdown Block provides PrismJS Markdown conversion in Wagtail.
Home-page: https://github.com/FlipperPA/wagtailmarkdownblock
Author: Tim Allen
Author-email: tallen@wharton.upenn.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Wagtail
Classifier: Framework :: Wagtail :: 2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: wagtail (>=1.8)
Requires-Dist: markdown (>=2.5)
Requires-Dist: bleach (>=2.0.0)

# 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](https://simplemde.com/) 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

* Timothy Allen (https://github.com/FlipperPA)
* Milton Lenis (https://github.com/MiltonLn)
* Mathias Picker (https://github.com/mathiasp)
* Tobias Ernst (https://github.com/to-bee)


