add attr_list to markdown extensions

this will lead to me putting less HTML in the .md files, which is a good
thing
This commit is contained in:
Brian S. Stephan 2021-02-12 09:15:41 -06:00
parent e6d2015de5
commit 3bfdacdb6d
1 changed files with 1 additions and 0 deletions

View File

@ -35,6 +35,7 @@ class Config(object):
MARKDOWN_EXTENSIONS = ['extra', 'mdx_linkify', 'smarty', 'tables']
MARKDOWN_EXTENSION_CONFIGS = {
'extra': {
'attr_list': {},
'footnotes': {
'UNIQUE_IDS': True,
},