diff --git a/pelican/plugins/simple_footnotes/simple_footnotes.py b/pelican/plugins/simple_footnotes/simple_footnotes.py index 1570d33..a3f0984 100644 --- a/pelican/plugins/simple_footnotes/simple_footnotes.py +++ b/pelican/plugins/simple_footnotes/simple_footnotes.py @@ -29,7 +29,17 @@ def sequence_gen(genlist): def parse_for_footnotes(article_or_page_generator): all_content = [ getattr(article_or_page_generator, attr, None) - for attr in ["articles", "drafts", "pages"] + for attr in [ + "articles", + "translations", + "drafts", + "drafts_translations", + "pages", + "hidden_pages", + "hidden_translations", + "draft_pages", + "draft_translations", + ] ] all_content = [x for x in all_content if x is not None] for article in sequence_gen(all_content):