wagtail-prose-editor-images
Adds native Wagtail Image Chooser integration to django-prose-editor.
Features
- Toolbar button with native Wagtail image chooser modal.
- Clean integration with TipTap image node schema.
- Works out of the box in Wagtail Admin.
Installation
pip install wagtail-prose-editor-images
Add to INSTALLED_APPS in your settings.py after wagtail.images and django_prose_editor:
INSTALLED_APPS = [
...
"wagtail.images",
"django_prose_editor",
"wagtail_prose_editor_images",
...
]
Usage
In your model with ProseEditorField, simply enable the Image extension:
from django_prose_editor.fields import ProseEditorField
class MyPage(Page):
body = ProseEditorField(
extensions={
"Bold": True,
"Italic": True,
"Image": True, # Enables image support and the Wagtail chooser button!
}
)
Release files for wagtail-prose-editor-images 0.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| wagtail_prose_editor_images-0.1.4.tar.gz | 4.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| wagtail_prose_editor_images-0.1.4-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 9.6 kB
Release files / wagtail_prose_editor_images-0.1.4.tar.gz
| Download URL | wagtail_prose_editor_images-0.1.4.tar.gz |
|---|---|
| Size | 4.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
11bf110e8eb6e026f7d78d60261b3c05d7e1425ba3869eb179407aa2ebbec544
|
|
BLAKE2b-256 checksum How to use checksums |
3cedeba3176ddb14e5b68514734ac79d12fa0be03278e25ec7d2656b96b7ff08
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.32.5
|
Release files / wagtail_prose_editor_images-0.1.4-py2.py3-none-any.whl
| Download URL | wagtail_prose_editor_images-0.1.4-py2.py3-none-any.whl |
|---|---|
| Size | 5.5 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
ddb9f40599fd0fd0eff418adb2e3315f5c36e4698f5978bd009a044c8f941a80
|
|
BLAKE2b-256 checksum How to use checksums |
2601929b0263e576869a94f74966c91703af8a3988b237a5b4d73bd8863f1edd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.32.5
|