From cd7edb0f634178a761fe75071dcfe8112639cc86 Mon Sep 17 00:00:00 2001 From: windingwind <33902321+windingwind@users.noreply.github.com> Date: Sat, 30 Nov 2024 10:07:11 +0100 Subject: [PATCH] chore(doc): update note template example link format --- docs/about-note-template.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/about-note-template.md b/docs/about-note-template.md index c388d7d..46c9e26 100644 --- a/docs/about-note-template.md +++ b/docs/about-note-template.md @@ -304,10 +304,10 @@ ${{ } key = att.key; if (att.libraryID === 1) { - return `zotero://open-pdf/library/items/${key}`; + return `zotero://open/library/items/${key}`; } else { groupID = Zotero.Libraries.get(att.libraryID).id; - return `zotero://open-pdf/groups/${groupID}/items/${key}`; + return `zotero://open/groups/${groupID}/items/${key}`; } } sharedObj.getPDFLink = getPDFLink;