podcast
Version:
Podcast RSS feed generator. A really simple API to add Podcast-RSS feeds to any project.
24 lines (23 loc) • 669 B
JavaScript
export const buildSimpleChaptersElement = (chapters) => {
const chaptersElement = {
"psc:chapters": [
{
_attr: {
version: chapters.version,
"xmlns:psc": "http://podlove.org/simple-chapters",
},
},
],
};
if (Array.isArray(chapters.chapter)) {
for (const chapter of chapters.chapter) {
const chapterElement = {
"psc:chapter": {
_attr: chapter,
},
};
chaptersElement["psc:chapters"].push(chapterElement);
}
}
return chaptersElement;
};