From 3e6b27b2937192f5083f91e659d81554b3a8be7e Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Thu, 25 Sep 2025 09:51:36 +0200 Subject: [PATCH] corrected bibtex interaction --- lib/publications.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/publications.ts b/lib/publications.ts index db2b6819..2fedefcc 100644 --- a/lib/publications.ts +++ b/lib/publications.ts @@ -35,10 +35,8 @@ export function getPublicationsData(): Publication[] { : ''}}, `; } else { - if (Array.isArray(value)) { - bibtexEntryString += ` ${key} = {${value.join(" ")}}, + bibtexEntryString += ` ${key} = {${value}}, `; - } } } bibtexEntryString += `}`