This is a Wagtail plugin, which allows CKEditor to be used as an internal editor instead of hallo.js or draftail.
Wagtail 2+ Django 3+
Include wagtail_ckeditor
in your INSTALLED_APPS
.
Ensure that you have this entry in your settings.py
file.
WAGTAILADMIN_RICH_TEXT_EDITORS = {
'default': {
'WIDGET': 'wagtail_ckeditor.widgets.CKEditor'
}
}
There are several options you can add to your settings.py
file.
WAGTAIL_CKEDITOR_CONFIG = {
"language": "ru",
}
Inspired by:
Richard Mitchell (https://github.com/isotoma/wagtailtinymce.git) mastnym (https://github.com/mastnym/wagtail-ckeditor)