diff --git a/feed_md.py b/feed_md.py index 96081a4..425d591 100644 --- a/feed_md.py +++ b/feed_md.py @@ -15,7 +15,7 @@ def main(args): fg.description("This page is my notebook. It has no specific content characteristic.") fg.language('en') for post in sorted(all_md_files, key=os.path.getmtime): - if "Template" not in post and "First Page" not in post: + if "Template" not in post and "First Page" not in post and "ideas" not in post: fe = fg.add_entry() dir_name, file_name = os.path.split(post) full_file = f"{dir_name.split('/')[-1]}/{file_name}"