-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org html link export #12
Comments
i'm on 9.0.5 |
In that case, try the new link format for 9.x org mode: (org-link-set-parameters "zotero"
:follow #'org-zotxt--link-follow
:export (lambda (path desc format)
(format "%s" desc))) I think that should work. |
Thanks. That code works, but unfortunately it only works when I explicitly evaluate that code. Having it in my init, or where it is, does not seem to be cutting it... |
Probably the issue is that this code is loaded before (eval-after-load "org-zotxt"
(org-link-set-parameters "zotero"
:follow #'org-zotxt--link-follow
:export (lambda (path desc format)
(format "%s" desc)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So I use the following code so that zotero:// links will show up in my html exports from org
This is in my init file. I must confess my elisp is not good enough to see exactly what's going on here. But the strange thing is that unless I explicitly eval this block with
C-x C-e
, the link is exported as a zotero://, instead of the preferred text of the reference itself.Could the proper export behavior be worked into zotxt-emacs? Am I missing something here? Is this just my config being goofy?
The text was updated successfully, but these errors were encountered: