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.3
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.3.tar.gz | 3.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| wagtail_prose_editor_images-0.1.3-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 8.7 kB
Release files / wagtail_prose_editor_images-0.1.3.tar.gz
| Download URL | wagtail_prose_editor_images-0.1.3.tar.gz |
|---|---|
| Size | 3.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6d408f431055a15761420e06d1b134f11b764e71ad3a133f3ea058b821239479
|
|
BLAKE2b-256 checksum How to use checksums |
d43a8ae841356defa3ce28ab59720021ad11f6031f7f8e88e954f3656fba198a
|
| 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.3-py2.py3-none-any.whl
| Download URL | wagtail_prose_editor_images-0.1.3-py2.py3-none-any.whl |
|---|---|
| Size | 5.1 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
ad353c04a4a9d6bee8e42663bc6a87c2804967d75a1445e493fa8047b16571c7
|
|
BLAKE2b-256 checksum How to use checksums |
f693c53aa42edf3bf399242cf8cec5498ccd345492886380d658f71380a3929f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.32.5
|