1

Normalisation des dates/heures

This commit is contained in:
2025-12-21 23:14:36 +01:00
parent 3295596a8d
commit 12d0a801de
4 changed files with 186 additions and 18 deletions

View File

@@ -417,7 +417,7 @@ async function main() {
const coverLine = coverFile ? `cover: images/${coverFile}\n` : '';
const md = `---\n` +
`title: "${pageTitle.replace(/"/g, '\\"')}"\n` +
`date: ${createdAt}\n` +
`date: "${createdAt}"\n` +
coverLine +
`---\n\n` +
body;