Revert "fix: Remove richtypo on head"

This reverts commit abc114f66a.
This commit is contained in:
Simon 2022-02-02 17:41:15 +01:00
parent abc114f66a
commit 679a554715
1 changed files with 1 additions and 4 deletions

View File

@ -27,11 +27,8 @@ const rt = richtypo.default([frRules.default, quotes]);
const folder = path.resolve(process.cwd(), 'public')
loadPages(folder).then(pages => {
const bodyRegex = '<body>(.*)</body>'
const regEx = new RegExp(`${bodyRegex}`, "ig")
for (const page of pages) {
const body = rt(regEx.exec(page.content)[1])
page.content = page.content.replace(bodyRegex, body)
page.content = rt(page.content)
}
savePages(pages);