From: M. Taylor Saotome-Westlake Date: Tue, 20 Feb 2018 04:04:26 +0000 (-0800) Subject: fix nested tags bug in footnotes plugin X-Git-Url: http://unremediatedgender.space/source?p=Ultimately_Untrue_Thought.git;a=commitdiff_plain;h=41a497634a8cbe144b07fb3a7c0e0b318d03004f fix nested tags bug in footnotes plugin Jesus Michael Bailey, who the Blanch writes this stuff?? --- diff --git a/plugins/simple_footnotes.py b/plugins/simple_footnotes.py index 890cb1b..0ea8383 100644 --- a/plugins/simple_footnotes.py +++ b/plugins/simple_footnotes.py @@ -22,7 +22,7 @@ def getText(node, recursive=False): else: if not recursive: return None - L.append(getText(n)) + L.append(getText(n, recursive)) return u''.join(L)