You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with open(year_index, 'w', encoding='utf-8') as f:
101
+
f.write(f'---\ntitle: "Articles from {year}"\ndescription: "PowerShell.org Articles published in {year}."\n---\n')
102
+
if not os.path.exists(month_index):
103
+
with open(month_index, 'w', encoding='utf-8') as f:
104
+
f.write(f'---\ntitle: "Articles from {today.strftime("%B %Y")}"\ndescription: "PowerShell.org Articles published in {today.strftime("%B %Y")}."\n---\n')
0 commit comments