[LibreOffice] URLs as hyperlinks
When a zotero item has a URL attribute it should be entered as a hyperlink into the document.
According to adamsmith on Apr 27th 2012 that is currently not possible.
If that is still true, I would like to inquire for the technical reasons and possibly start a discussion about how to achieve this in future.
Edit: format as HTML
According to adamsmith on Apr 27th 2012 that is currently not possible.
If that is still true, I would like to inquire for the technical reasons and possibly start a discussion about how to achieve this in future.
Edit: format as HTML
(Edit: after that, it would be up to the core devs of Zotero to decide whether and how to tie it into the Zotero preference system -- it can't be turned on always, since not everyone will want it for all documents.)
As towards the "can't be turned on always" I would refer to a question I previously answered here.
Edit: format as HTML
Here's a link to the relevant file in the citeproc-js source code:
https://bitbucket.org/fbennett/citeproc-js/src/3110df61a4e6/src/formats.js#cl-318
return "\\field{\\*\\fldinst{HYPERLINK \"" + str + "\"}}{\\fldrslt{"+ str +"}}";
should be
return "\\field{\\*\\fldinst HYPERLINK \"" + str + "\"}{\\fldrslt " + str + "}";
assuming that the output gets wrapped into {} later.
If you look closely it's not only the inner bracket. After the closing field there is one bracket less which probably makes the difference. diff.
Again, someone who knows the RTF specification will know whether this will work in the first place, and if so what can be done to get it working. I understand your impatience, but I'm not the person you need for the initial work on this. I've pointed out the place in the code where an adjustment should be made, I can't take it any further than that.