Browse Source

Add `ideas` folder to ignored ones

master
Fazil Altinel 3 years ago
parent
commit
ea274da4da
  1. 2
      feed_md.py

2
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}"

Loading…
Cancel
Save