From ea274da4da9f86f62476c81b5a3f174648c762ee Mon Sep 17 00:00:00 2001 From: fazil Date: Wed, 5 Jan 2022 21:20:12 +0300 Subject: [PATCH] Add `ideas` folder to ignored ones --- feed_md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}"