33 lines
547 B
JavaScript
33 lines
547 B
JavaScript
var cheerio = require('cheerio');
|
|
|
|
module.exports = function (item, itemOptions, source) {
|
|
// This plugin does no processing
|
|
// It's just a template
|
|
var $ = cheerio.load(itemOptions.description, {
|
|
normalizeWhitespace: true,
|
|
xmlMode: true
|
|
});
|
|
|
|
var tdihbody = $(":root");
|
|
|
|
|
|
|
|
if (tdihbody.length > 0)
|
|
{
|
|
try {
|
|
tdihbody.find('IMG').each(function (i, elem) {
|
|
var s, src = $(this).attr("src");
|
|
|
|
console.log(src);
|
|
|
|
});
|
|
}
|
|
catch (e) {
|
|
logger.error(e);
|
|
}
|
|
|
|
}
|
|
|
|
return itemOptions;
|
|
};
|