mirror of
https://gitlab.silvrtree.co.uk/martind2000/rss-braider.git
synced 2025-01-31 22:30:14 +00:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
|
// define kqed source
|
||
|
module.exports = function (item, itemOptions) {
|
||
|
if (!item || !itemOptions) {
|
||
|
return;
|
||
|
}
|
||
|
if (item.source_url) {
|
||
|
itemOptions.custom_elements.push(
|
||
|
{ 'kqed:source': item.source_url }
|
||
|
);
|
||
|
}
|
||
|
};
|