fix filename generation
All checks were successful
lint / lint (push) Successful in 38s

This commit is contained in:
n 2024-07-20 19:02:19 +02:00
parent 9784a9ccba
commit 4ff47074db
Signed by: n
GPG key ID: 510227DD6C502CE3

View file

@ -6,7 +6,6 @@ TODO: convert to proper Gemtext'''
import os
import re
from urllib.parse import quote
import html2markdown
import mysql.connector
@ -40,7 +39,8 @@ with open("index.gmi", "w", encoding="utf-8") as f:
for x in myresult:
path = path_regex.findall(x[0])[0]
path_with_dashes = path.replace("/","-")
filename = quote(quote(filename_regex.findall(x[0])[0]))
title = filename_regex.findall(x[0])[0]
filename = re.sub(r'\W+','', title)
with open("index.gmi", "a", encoding="utf-8") as f:
f.write(f'=> {path}/{filename}.gmi {path_with_dashes} - {x[1]}\n')
@ -51,9 +51,9 @@ for x in myresult:
except OSError:
print (f"Creation of the directory {path} failed")
if not os.path.isfile(f'{path}/"{filename}".gmi'):
print(f"creating {path}/\"{filename}\".gmi")
with open(f'{path}/"{filename}".gmi', "w", encoding="utf-8") as f:
if not os.path.isfile(f'{path}/{filename}.gmi'):
print(f"creating {path}/{filename}.gmi")
with open(f'{path}/{filename}.gmi', "w", encoding="utf-8") as f:
f.write(f"# {x[1]}\n\n")
f.write(f"Publié le {path}\n\n")
f.write(html2markdown.convert(x[2]))