-
-
Save ColdDevil/9145021 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"translatorID":"04623cf0-313c-11df-9aae-0800200c9a66", | |
"translatorType":2, | |
"label":"ZotSelect Link", | |
"creator":"Florian Weßling", | |
"target":"html", | |
"minVersion":"2.0", | |
"maxVersion":"", | |
"priority":200, | |
"inRepository":false, | |
"displayOptions":{"exportCharset":"UTF-8"}, | |
"lastUpdated":"2014-02-21 23:35:08" | |
} | |
// save this file at: /Users/YOURNAME/Library/Application Support/Zotero/Profiles/abc123xyz.default/zotero/translators | |
function doExport() { | |
var item; | |
while(item = Zotero.nextItem()) { | |
Zotero.write("zotero://select/items/"); | |
var library_id = item.libraryID ? item.libraryID : 0; | |
Zotero.write(library_id + "_" + item.key + "\n"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment