Bibliography as hyperlinks?
I want to post a list of links on a web page, so when I create a bibliography, I want it to format each item as a hyperlink, like so:
Page name
With the link and the title of the article inserted.
This seems quite simple, but I can't for the life of me figure out how to do it. I'm very new to Zotero, so this may be an obvious question, but I looked up the help files and all they talk about is different bibliography styles.
Page name
With the link and the title of the article inserted.
This seems quite simple, but I can't for the life of me figure out how to do it. I'm very new to Zotero, so this may be an obvious question, but I looked up the help files and all they talk about is different bibliography styles.
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
If you don't really need citation functionality, but just need title and link, it might actually work better to write an export translator, which could produce proper html.
I'll play around with the settings and see what can be done. Thanks for helping a newbie.
For example, if you export Zotero RDF and save this file you can apply an external parsing python script to trim the exported file(s) to your own custom format. This is easier than trying to write a custom export translator.
A python script can then parse the exported zotero.rdf (or collection bibliography.html) using BeautifulSoap library.
https://www.crummy.com/software/BeautifulSoup/bs4/doc/
#!/usr/bin/env python
from bs4 import BeautifulSoup
import urllib
# for a bibliography
# soup = BeautifulSoup(urllib.urlopen("bibliography.html").read())
# or for an exported library ...
soup = BeautifulSoup(urllib.urlopen("zotero.rdf").read())
# write the rest of your parsing code here to get the post processing format you require ...
# such as your list of titles, hyperlinks, dates.