2015-08-14 09:55:39 +00:00
|
|
|
module.exports = function (item, itemOptions, source) {
|
|
|
|
|
|
|
|
var match = itemOptions.description.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,'');
|
2015-08-14 19:58:05 +00:00
|
|
|
match = match.replace(/<iframe\b[^<]*(?:(?!<\/iframe>)<[^<]*)*<\/iframe>/gi,'');
|
2015-08-14 09:55:39 +00:00
|
|
|
itemOptions.description = match;
|
|
|
|
return itemOptions;
|
|
|
|
|
|
|
|
};
|