var exports = {};
exports.testPreconditions = $.noop;
exports.initialize = $.noop;
exports.filter = $.noop;
exports.process = function ( $els ) {
$els.each(function(){
$(".hlist dl", this).each(function(){
$(this).html($(this).html().replace(/<\/dt>\n<dd>/g, '</dt>\xA0<dd>'));
});
});
}
module.exports = exports;