๐Updating from older versions
var s = document.createElement("script");
s.src = "https://greenmeen.github.io/roam-snippets/roam-import-paper-data/roam-import-paper-data.js";
s.id = "roam-import-paper-data";
s.type = "text/javascript";
document.getElementsByTagName("body")[0].appendChild(s);
// should become :
var s = document.createElement("script");
s.src = "https://cdn.jsdelivr.net/npm/@alixlahuec/zotero-roam@0.5";
s.id = "zotero-roam";
s.type = "text/javascript";
document.getElementsByTagName("body")[0].appendChild(s);USER_REQUEST = {
apikey: "xxxxxxxxxx",
dataURI: "users/userID/items",
params: ""
}
funcmap = {
journalArticle: "myPaperFormat"
}
typemap = {
bookSection: "Chapter"
}
// should become :
zoteroRoam_settings = {
dataRequests: {
apikey: "xxxxxx",
dataURI: "users/userID/items",
params: ""
},
funcmap: {
journalArticle: "myPaperFormat"
},
typemap: {
bookSection: "Chapter"
}
}Last updated