From 41a497634a8cbe144b07fb3a7c0e0b318d03004f Mon Sep 17 00:00:00 2001 From: "M. Taylor Saotome-Westlake" Date: Mon, 19 Feb 2018 20:04:26 -0800 Subject: [PATCH] fix nested tags bug in footnotes plugin Jesus Michael Bailey, who the Blanch writes this stuff?? --- plugins/simple_footnotes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.17.1