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', 'header', 'image', 'inline-code', 'marker', 'nested-list', 'paragraph', 'quote', 'raw', 'table', 'underline', 'warning', 'link', 'text-alignment-tune', 'text-variant-tune' ], blank=True, null=True, )
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.1.5.tar.gz
(152.7 kB
view details)
File details
Details for the file wagtail_editorjs-1.1.5.tar.gz
.
File metadata
- Download URL: wagtail_editorjs-1.1.5.tar.gz
- Upload date:
- Size: 152.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b38abd7959a527c1733e396fbec4d11c512593e1abd911d87927d24312f47884 |
|
MD5 | f239fa523f2e9ad6834f475dbc9e14c8 |
|
BLAKE2b-256 | 2e7e80904bbcb12ce2bf15d35485c8525c5adc36b547aca5391a119679429391 |