isprii
About
- Username
- isprii
- Joined
- Roles
- Member
Comments
-
This doesn't seem to compile correctly? I'm getting an orange box in the postscript and output is not giving me anything I see what you're saying though, and I think this should work, editting my spaghetti from before: It isn't case insensitive.. …
-
Okay think I got it working with some spaghetti: I also wish there was a post somewhere on zotero about formatting.... if (Translator.BetterTeX && item.attachments) { for (const name of ['pdfsiterussian', 'pdfsiteenglish']) { if (nam…
-
It kind of works. It's grabbing more than needed for the other links that don't contain russian. The output ends up looking like this: pdfsiterussian = {website/s/iez38d36uywu606ue52dngad3vky8h4e}, pdfsiteenglish = {website/s/huvknixkfqq570u6qls…
-
Thanks for the tip, but if I put my code snippet into postscript: I guess it doesn't know what the variables are to make it work, I think the item.attachments isn't known now? Current code snippet is this: if (item.attachments) { Zotero.write(",…
-
If anyone was wondering, I fixed it by adding this before the final newline write: if (item.attachments) { Zotero.write(","); for (let i = 0; i < item.attachments.length; i++){ var attachment = item.attachments[i]; var temp_title =…
-
edit: It looks like I can edit my bibtex exporter in the fieldMap section, but so far if I do: attachments: "attachments", it exports: attachments = {[object Object],[object Object]}, I don't write java, mostly python, so I'm not really sure how …