update to citeproc-js 1.0.123

This commit is contained in:
Simon Kornblith 2011-03-09 23:37:28 +00:00
parent 7c28c4789f
commit 817a768a8f

View File

@ -1752,7 +1752,7 @@ CSL.DateParser = function (txt) {
};
CSL.Engine = function (sys, style, lang, forceLang) {
var attrs, langspec, localexml, locale;
this.processor_version = "1.0.122";
this.processor_version = "1.0.123";
this.csl_version = "1.0";
this.sys = sys;
this.sys.xml = new CSL.System.Xml.Parsing();
@ -8015,7 +8015,7 @@ CSL.Util.FlipFlopper.prototype.getSplitStrings = function (str) {
}
len = strs.length;
for (pos = 0; pos < len; pos += 2) {
strs[pos] = strs[pos].replace("'", "\u02bc");
strs[pos] = strs[pos].replace("'", "\u2019");
strs[pos] = CSL.Output.Formats[this.state.opt.mode].text_escape(strs[pos]);
}
return strs;