From 60366a15ade3c1c7b3389cc28367e03e0a6433ee Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Fri, 24 Mar 2023 20:40:29 -0500 Subject: [PATCH] cleaning up the config file --- config.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index f10c8b4..b3b32cc 100644 --- a/config.py +++ b/config.py @@ -1,6 +1,7 @@ +"""Configuration for orb.moe.""" TITLE_SUFFIX = 'orb.moe' CONTACT_EMAIL = 'bss@orb.moe' -MARKDOWN_EXTENSIONS = ['extra', 'incorporealcms.mdx.figures', 'sane_lists', 'smarty', 'toc', 'attr_list'] + DEFAULT_PAGE_STYLE = 'dungeon' PAGE_STYLES = { 'dungeon': '/custom-static/css/dungeon.css', @@ -8,4 +9,8 @@ PAGE_STYLES = { 'light': '/static/css/light.css', 'plain': '/static/css/plain.css', } -MARKDOWN_EXTENSIONS = ['extra', 'sane_lists', 'smarty', 'toc', 'tables'] + +MARKDOWN_EXTENSIONS = [ + 'extra', 'incorporealcms.mdx.figures', 'sane_lists', 'smarty', 'toc', + 'attr_list', 'tables', 'pymdownx.tilde', +]