This commit is contained in:
Sarah Schneider 2020-11-24 13:14:31 -05:00
Родитель 99d514617a
Коммит f606d4754e
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -65,8 +65,7 @@ async function main () {
// first replace the old link with the new link
// then remove any trailing slashes
newContent = newContent
.replace(devLink, newLink)
.replace(`${newLink}/`, newLink)
.replace(new RegExp(`${devLink}/?(?=\\))`), newLink)
}
fs.writeFileSync(file, frontmatter.stringify(newContent, data, { lineWidth: 10000 }))