|
ticket id 000068 |
status resolved |
priority ??? |
assigned to Waylan |
Reported by: Evan Carmi Component: |
The footnotes extension seems to have a bug in it. Line 293 of extensions/footnotes.py refers to a variable fnPlaceholder that is not defined. This error is thrown when the footnotes PLACE_MARKER ///Footnotes Go Here/// marker is placed somewhere in the file.
The following python code will throw the error:
html = markdown.markdown('///Footnotes Go Here/// \n Some text[^1] with a footnote. \n [^1]: A footnote', ['footnotes'])
NameError: global name 'fnPlaceholder' is not defined
Resolution
fixed