From b6aa125b8dbfdd353d3dcf2978c3647b4836e0bc Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 13 Feb 2021 11:07:00 -0600 Subject: [PATCH] add sane_lists to markdown extensions this fixes stuff like * foo * bar 1. hax --- incorporealcms/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/incorporealcms/config.py b/incorporealcms/config.py index 2ec0028..6518f07 100644 --- a/incorporealcms/config.py +++ b/incorporealcms/config.py @@ -32,7 +32,7 @@ class Config(object): }, } - MARKDOWN_EXTENSIONS = ['extra', 'mdx_linkify', 'smarty', 'tables'] + MARKDOWN_EXTENSIONS = ['extra', 'mdx_linkify', 'sane_lists', 'smarty', 'tables'] MARKDOWN_EXTENSION_CONFIGS = { 'extra': { 'attr_list': {},