enable footnotes extra for markdown

This commit is contained in:
Brian S. Stephan 2021-02-11 18:36:48 -06:00
parent 48c6e8495a
commit 07031fe667
1 changed files with 8 additions and 2 deletions

View File

@ -32,8 +32,14 @@ class Config(object):
},
}
MARKDOWN_EXTENSIONS = ['mdx_linkify', 'tables']
MARKDOWN_EXTENSION_CONFIGS = {}
MARKDOWN_EXTENSIONS = ['extra', 'mdx_linkify', 'tables']
MARKDOWN_EXTENSION_CONFIGS = {
'extra': {
'footnotes': {
'UNIQUE_IDS': True,
},
}
}
DEFAULT_PAGE_STYLE = 'light'