When exporting a website, export the URL as howpublished

Using standard BibTeX styles, url will not show up. Generally it should be added to the howpublished field. Here is some code to do so (to be added to doExport() for bibtex exporter):

if(item.itemType == "webpage") {
writeField("howpublished", item.url);
}
Sign In or Register to comment.