Skip to content

Commit

Permalink
Citavi 5 XML: Add BibTeX Key import (#3405)
Browse files Browse the repository at this point in the history
  • Loading branch information
retorquere authored Jan 4, 2025
1 parent 368d01b commit c84ee62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Citavi 5 XML.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"inRepository": true,
"translatorType": 1,
"lastUpdated": "2022-08-18 11:23:00"
"lastUpdated": "2025-01-04 01:03:00"
}

/*
Expand Down Expand Up @@ -124,6 +124,7 @@ async function importItems({ references, doc, citaviVersion, rememberTags, itemI
item.numberOfVolumes = ZU.xpathText(references[i], './NumberOfVolumes');

addExtraLine(item, "PMID", ZU.xpathText(references[i], './PubMedID'));
addExtraLine(item, "Citation Key", ZU.xpathText(references[i], './BibTeXKey'));

item.pages = extractPages(ZU.xpathText(references[i], './PageRange'));
item.numPages = extractPages(ZU.xpathText(references[i], './PageCount'));
Expand Down

0 comments on commit c84ee62

Please sign in to comment.