in js/jekyll-search.js [76:82]
function findMatchesInObject(obj, crit, strategy) {
for (var key in obj)
if (strategy.matches(obj[key], crit)) {
matches.push(obj);
break
}
}