fix nested tags bug in footnotes plugin
[Ultimately_Untrue_Thought.git] / 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)