Added author link

This commit is contained in:
Robert Meissner 2025-06-08 14:57:29 +02:00
parent 142837591a
commit d2d24f7918

View file

@ -33,7 +33,8 @@ function general_book_content(book: PocketbookCloudBook, folder: string) {
'`);\n\n' +
'const result = queryResult.value.values.map(line => "> [!quote]\\n> " + line[0].replace(/\\n/g, "\\n> ") + (line[1] ? "\\n\\n> [!note]\\n> " + line[1].replace(/\\n/g, "\\n> ") : ""))\n\n' +
'dv.list(result)\n' +
'```\n';
'```\n' +
`Authors: [[${book.metadata.authors}]]\n`;
return content;
}