X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-handlebars.js;h=866dc8a7b33abcd25c4c8a5c1e23ec53acd89e47;hb=0cbf56a5b0676d4adea770e9f50c1d7b0d72ae86;hp=999c1385244f9f06ed4bd195513d6649c22208b7;hpb=bbc2308efbf35330bd4e5c6af18beec11b8f7405;p=mkws-moved-to-github.git diff --git a/src/mkws-handlebars.js b/src/mkws-handlebars.js index 999c138..866dc8a 100644 --- a/src/mkws-handlebars.js +++ b/src/mkws-handlebars.js @@ -1,25 +1,41 @@ // Handlebars helpers Handlebars.registerHelper('mkws-json', function(obj) { - return $.toJSON(obj); + return mkws.$.toJSON(obj); }); // This is intended to handle paragraphs from Wikipedia, hence the // rather hacky code to remove numbered references. // -Handlebars.registerHelper('mkws-paragraphs', function(obj, count) { +Handlebars.registerHelper('mkws-paragraphs', function(obj, nPara, nSent) { var acc = []; // For some reason, Handlebars provides the value - // {"hash":{},"data":{}} for undefined parameters - if (count.hasOwnProperty('hash') || count == 0 || count > obj.length) { - count = obj.length; + // {"hash":{},"data":{}} for parameters that are not provided. So we + // have to be prepared for actual numbers, explicitly undefined + // values and this dumb magic value. + if (obj && (nPara === undefined || nPara.hasOwnProperty('hash') || nPara == 0 || nPara > obj.length)) { + nPara = obj.length; + } + if (nSent === undefined || nSent.hasOwnProperty('hash') || nSent == 0) { + nSent = Infinity; } - for (var i = 0; i < count; i++) { - acc.push('

', obj[i].replace(/\[[0-9,]+\]/g, ''), '

'); + for (var i = 0; i < nPara; i++) { + // Remove numbered references such as "[1,3,4]" from text + var text = obj[i].replace(/\[[0-9,]+\]/g, ''); + // Next line from http://stackoverflow.com/questions/18914629/split-string-into-sentences-in-javascript + var sentences = text.replace(/([.?!])\s*(?=[A-Z])/g, "$1|").split("|"); + if (sentences.length > nSent) + sentences.length = nSent; + + acc.push('

', sentences.join(' '), '

'); + nSent -= sentences.length; + if (nSent == 0) + break; } + return acc.join(''); });