commit df10b726de12d5606f2b598efb9997dc742fcba1
parent 66e121a4ed67f4a9dfdf44c7d9dc91022b4c6087
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 3 Jun 2011 19:35:45 +0000
Use unescaped "<sup>" in HTML output in citeproc-js
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/citeproc.js b/chrome/content/zotero/xpcom/citeproc.js
@@ -9214,7 +9214,7 @@ CSL.Output.Formats.prototype.html = {
.replace(" ", "  ", "g")
.replace(CSL.SUPERSCRIPTS_REGEXP,
function(aChar) {
- return "<sup>" + CSL.SUPERSCRIPTS[aChar] + "</sup>";
+ return "<sup>" + CSL.SUPERSCRIPTS[aChar] + "</sup>";
});
},
"bibstart": "<div class=\"csl-bib-body\">\n",