www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

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:
Mchrome/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 @@ -9214,7 +9214,7 @@ CSL.Output.Formats.prototype.html = { .replace(" ", "&#160; ", "g") .replace(CSL.SUPERSCRIPTS_REGEXP, function(aChar) { - return "&#60;sup&#62;" + CSL.SUPERSCRIPTS[aChar] + "&#60;/sup&#62;"; + return "<sup>" + CSL.SUPERSCRIPTS[aChar] + "</sup>"; }); }, "bibstart": "<div class=\"csl-bib-body\">\n",