import os # Chemin vers le dossier contenant les fichiers HTML html_dir = "source/converted" style_file="style_general.css" css_content="" with open(os.path.join(style_file), "r") as f: css_content = f.read() # Parcourir tous les fichiers HTML dans le dossier for root, _, files in os.walk(html_dir): for file in files: if file.endswith(".html"): # Ouvrir le fichier HTML en mode lecture with open(os.path.join(root, file), "r") as f: html_content = f.read() # Ajouter la déclaration de charset UTF-8 et le doctype HTML html_content = f"\n\n\n\n\n\n{html_content}\n\n" # Écrire le contenu modifié dans le fichier HTML with open(os.path.join(root, file), "w") as f: f.write(html_content)