Erik Hetzner
Erik Hetzner
Unfortunately nothing is very well documented, either in the core of Zotero or in this repo. I just verified that the lookup engine for the SFPL works, though, if you...
I can add this if you provide a template. I'm not sure what it should look like. Thanks!
Yes, unfortunately I can't figure that out at all :) I'll see what I can do
Sorry! My mistake. I was working off a branch of zotxt that has not been released yet. I will release a fix ASAP.
Should be fixed in https://github.com/egh/zotxt/releases/tag/v5.1.2
@pierwill Which version of org-mode are you using? I believe this has changed in recent versions. See this change: https://github.com/egh/zotxt-emacs/commit/69d87791972ae90133b8df7f48c6dac892bf206f
In that case, try the new link format for 9.x org mode: ```elisp (org-link-set-parameters "zotero" :follow #'org-zotxt--link-follow :export (lambda (path desc format) (format "%s" desc))) ``` I think that should...
Probably the issue is that this code is loaded before `org-zotxt`,, and is then overridden by the default export. Try: ```elisp (eval-after-load "org-zotxt" (org-link-set-parameters "zotero" :follow #'org-zotxt--link-follow :export (lambda (path...
Thank you! I don't think I've changed anything in zotxt. It uses `org-open-file` to open the file, so the documentation for that function should explain more on what it's doing....
Excellent, thanks for the tip!