fix: Remove richtypo on head
This commit is contained in:
parent
ae3473dcea
commit
abc114f66a
|
@ -27,8 +27,11 @@ const rt = richtypo.default([frRules.default, quotes]);
|
||||||
const folder = path.resolve(process.cwd(), 'public')
|
const folder = path.resolve(process.cwd(), 'public')
|
||||||
|
|
||||||
loadPages(folder).then(pages => {
|
loadPages(folder).then(pages => {
|
||||||
|
const bodyRegex = '<body>(.*)</body>'
|
||||||
|
const regEx = new RegExp(`${bodyRegex}`, "ig")
|
||||||
for (const page of pages) {
|
for (const page of pages) {
|
||||||
page.content = rt(page.content)
|
const body = rt(regEx.exec(page.content)[1])
|
||||||
|
page.content = page.content.replace(bodyRegex, body)
|
||||||
}
|
}
|
||||||
|
|
||||||
savePages(pages);
|
savePages(pages);
|
||||||
|
|
Loading…
Reference in New Issue