From 9c8738dca09fc43b2f3e5933a2d017953ac58f85 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 14 Jul 2009 05:36:37 +0000 Subject: [PATCH] Trailing letters in DOIs weren't linked in HTML bibliographies --- chrome/content/zotero/xpcom/csl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/csl.js b/chrome/content/zotero/xpcom/csl.js index 76bedc9fba..3fa334f523 100644 --- a/chrome/content/zotero/xpcom/csl.js +++ b/chrome/content/zotero/xpcom/csl.js @@ -413,7 +413,7 @@ Zotero.CSL.prototype.formatBibliography = function(itemSet, format) { // // Ignore URLs preceded by '>', since these are likely already links string = string.replace(/([^>])(https?:\/\/[^\s]+)([\."'>:\]\)\s])/g, '$1$2$3'); - string = string.replace(/(doi:[ ]*)([0-9][^\s]+[0-9])/g, '$1$2'); + string = string.replace(/(doi:[ ]*)(10\.[^\s]+[0-9a-zA-Z])/g, '$1$2'); var span = (coins ? '  ' : '');