mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 01:22:07 +01:00
432 B
432 B
Legacy richtext
.. module:: wagtail.contrib.legacy.richtext
Provides the legacy richtext wrapper.
Place wagtail.contrib.legacy.richtext
before wagtail.core
in INSTALLED_APPS
.
INSTALLED_APPS = [
...
"wagtail.contrib.legacy.richtext",
"wagtail.core",
...
]
The {{ page.body|richtext }}
template filter will now render:
<div class="rich-text">...</div>