We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7063ef6 commit a91bd59Copy full SHA for a91bd59
src/project/types/book/book-bibliography.ts
@@ -201,7 +201,7 @@ async function generateBibliographyHTML(
201
[kNoCite]: ld.uniq(citeIds).map((id) => "@" + id).join(", "),
202
};
203
if (csl) {
204
- yaml[kCsl] = csl;
+ yaml[kCsl] = isAbsolute(csl) ? relative(context.dir, csl) : csl;
205
}
206
const frontMatter = `---\n${stringify(yaml, { indent: 2 })}\n---\n`;
207
const result = await execProcess({
0 commit comments