tags; .De -> . De

This commit is contained in:
Peter Kleiweg
2026-05-29 12:22:57 +02:00
parent 66581d4e98
commit ca4e7af8fa
21 changed files with 123 additions and 22 deletions

View File

@@ -92,7 +92,10 @@ func main() {
fp, err := os.Create("out/" + filename[:len(filename)-4] + ".txt")
x(err)
for _, cat := range item.Cats {
x(fmt.Fprintf(fp, "##META text tag = %s\n", u.FixSpace(cat)))
t := u.FixSpace(cat)
if t != "Artikelen" && t != "cafeyn" {
x(fmt.Fprintf(fp, "##META text tag = %s\n", t))
}
}
x(fp.WriteString(text))
x(fp.Close())