From df10b726de12d5606f2b598efb9997dc742fcba1 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 3 Jun 2011 19:35:45 +0000 Subject: [PATCH] Use unescaped "" in HTML output in citeproc-js --- chrome/content/zotero/xpcom/citeproc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/citeproc.js b/chrome/content/zotero/xpcom/citeproc.js index 84bc65369b..b51feccf1a 100644 --- 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 "" + CSL.SUPERSCRIPTS[aChar] + ""; }); }, "bibstart": "
\n",