EditorJS as a widget for Wagtail, with Page- and Image chooser support
Project description
wagtail_editorjs
A Wagtail EditorJS widget with page/image chooser support, document support and more!
Quick start
-
Add 'wagtail_editorjs' to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ..., 'wagtail_editorjs', ]
-
Add the HTML to your template:
<link rel="stylesheet" href="{% static 'wagtail_editorjs/css/frontend.css' %}"> {% load editorjs %} {% editorjs self.editor_field %}
-
Add the field to your model:
... from wagtail_editorjs.fields import EditorJSField class HomePage(Page): content_panels = [ FieldPanel("editor_field"), ] editor_field = EditorJSField( # All supported features features=[ 'attaches', 'checklist', 'code', 'delimiter', 'document', 'drag-drop', 'header', 'image', 'inline-code', 'link', 'marker', 'nested-list', 'paragraph', 'quote', 'raw', 'table', 'text-alignment-tune', 'text-variant-tune', 'underline', 'undo-redo', 'warning', ], blank=True, null=True, )
Settings
EDITORJS_CLEAN_HTML
Default: True
Clean the HTML output on rendering.
This happens every time the field is rendered.
It might be smart to set up some sort of caching mechanism.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wagtail_editorjs-1.2.8.tar.gz
(216.5 kB
view hashes)