fix bug that docs not loading

This commit is contained in:
syuilo 2021-08-07 20:39:27 +09:00
parent d2c14b844e
commit 7705a7928e

View file

@ -168,7 +168,7 @@ router.get('/docs.json', async ctx => {
}
docs.push({
path: path.replace(`${dirPath}/`, '').split('.')[0],
path: path.match(new RegExp(`docs\/${lang}\/(.+?)\.md$`))![1],
title: markdown.renderer.render(headingTokens, {}, {}),
summary: markdown.renderer.render(firstParagrapfTokens, {}, {}),
});