make page paths absolute

This commit is contained in:
neri 2022-09-23 13:34:53 +02:00
parent 57d896eac7
commit 5acb247fb0
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ async function updatePagelist(pagelistConfig, contentLines) {
).data.pages.list
.filter((page) => !page.path.includes('/_'))
.filter((page) => !page.tags.includes('metapage'))
.map((page) => `- [${page.title}](${page.path})`);
.map((page) => `- [${page.title}](/${page.path})`);
console.log({ pagelistConfig, query, result });