From 592da67185ec577c086f3d2f8af988c0694a8ffb Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 15 Sep 2022 08:19:08 +0100 Subject: [PATCH] Add blockquote and super/sub scripts to rich text --- website/settings.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/website/settings.py b/website/settings.py index 7a872d4..15a9af3 100644 --- a/website/settings.py +++ b/website/settings.py @@ -245,6 +245,9 @@ WAGTAILADMIN_RICH_TEXT_EDITORS = { "strikethrough", "snippet-link", "snippet-embed", + "superscript", + "subscript", + "blockquote", ] }, }, @@ -259,6 +262,8 @@ WAGTAILADMIN_RICH_TEXT_EDITORS = { "code", "strikethrough", "snippet-link", + "superscript", + "subscript", ] }, }, @@ -275,6 +280,8 @@ WAGTAILADMIN_RICH_TEXT_EDITORS = { "code", "strikethrough", "snippet-link", + "superscript", + "subscript", ] }, },