diff options
-rw-r--r-- | mdx_footnotes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdx_footnotes.py b/mdx_footnotes.py index de79ed4..bc8688b 100644 --- a/mdx_footnotes.py +++ b/mdx_footnotes.py @@ -252,6 +252,6 @@ class FootnoteTextPostprocessor (markdown.Postprocessor): def run(self, text) : return text.replace(FN_BACKLINK_TEXT, "↩") -def makeExtension(configs=None) : +def makeExtension(configs=[]): return FootnoteExtension(configs=configs) |