Commonmark support for Wagtail
Project description
wagtail-commonmark: CommonMark fields and blocks for Wagtail
Tired of annoying rich text editors getting in the way of your content input? Wish Wagtail worked more like a wiki? Well, now it can.
wagtail-commonmark
provides CommonMark field support for Wagtail.
Specifically, it provides:
- A
wagtailcommonmark.blocks.CommonMarkBlock
for use in streamfields. - A
wagtailcommonmark.fields.CommonMarkField
for use in page models. - A
wagtailcommonmark.edit_handlers.CommonMarkPanel
for use in the editor interface. - A
wagtailcommonmark.jinja2tags.commonmark
extension for use in jinja2 templates. - A
commonmark
template tag.
Installation
Alpha release is available on Pypi - https://pypi.org/project/wagtail-commonmark/ - installable via pip install wagtail-commonmark
.
Using it
Add it to INSTALLED_APPS
:
INSTALLED_APPS += [
'wagtailcommonmark',
]
Use it as a StreamField
block:
from wagtailcommonmark.blocks import CommonMarkBlock
class MyStreamBlock(StreamBlock):
markdown = CommonMarkBlock(icon="code")
Or use as a page field:
from wagtailcommonmark.edit_handlers import CommonMarkPanel
from wagtailcommonmark.fields import CommonMarkField
class MyPage(Page):
body = CommonMarkField()
content_panels = [
FieldPanel("title", classname="full title"),
CommonMarkPanel("body"),
]
And render the content in a template:
{% load wagtailcommonmark %}
<article>
{{ self.body|commonmark }}
</article>
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
wagtail-commonmark-0.2.2.tar.gz
(120.6 kB
view details)
File details
Details for the file wagtail-commonmark-0.2.2.tar.gz
.
File metadata
- Download URL: wagtail-commonmark-0.2.2.tar.gz
- Upload date:
- Size: 120.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c87a9997beee0499a64c8f1142c3838adba8d464d571a05dc6d4cb60aa095514 |
|
MD5 | 05d55f83e6b7bec6fdb31271fa062fc3 |
|
BLAKE2b-256 | 087fc99bdd45792f210cf624825beac3f91ce2bb5aa4b037c0c932eebb62519f |