fix nested tags bug in footnotes plugin
authorM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Tue, 20 Feb 2018 04:04:26 +0000 (20:04 -0800)
committerM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Tue, 20 Feb 2018 04:08:45 +0000 (20:08 -0800)
Jesus Michael Bailey, who the Blanch writes this stuff??

plugins/simple_footnotes.py

index 890cb1b..0ea8383 100644 (file)
@@ -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)