Skip to content

Instantly share code, notes, and snippets.

@einalex
Created December 1, 2022 14:07
Show Gist options
  • Save einalex/ec8057a36b2e1a39270bc3da691912ad to your computer and use it in GitHub Desktop.
Save einalex/ec8057a36b2e1a39270bc3da691912ad to your computer and use it in GitHub Desktop.
Capitalize all Tags in Zotero via JS API
var tags = await Zotero.Tags.getAll();
for (let tag of tags) {
let new_tag = ""
for (let part of tag.tag.split(" ")) {
new_tag = new_tag.concat(" ", part.charAt(0).toUpperCase() + part.slice(1));
}
Zotero.Tags.rename(Zotero.Libraries.userLibraryID, tag.tag, new_tag);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment