This commit is contained in:
2026-03-06 18:45:01 +01:00
parent 7f402cd69b
commit f4f109f75d
2 changed files with 13 additions and 13 deletions

View File

@@ -324,7 +324,7 @@ class BlogWriter:
print(f"→ Cleaning {OUTPUT_DIR}/...")
count = 0
for filename in os.listdir(OUTPUT_DIR):
if filename.endswith(".md"):
if filename.endswith(".md") or filename.endswith(".txt"):
os.remove(os.path.join(OUTPUT_DIR, filename))
count += 1
print(f"✓ Removed {count} Markdown files.")