feedsmith
Version:
Fast, all‑in‑one feed parser and generator for RSS, Atom, RDF, and JSON Feed, with support for Podcast, iTunes, Dublin Core, and OPML files.
29 lines (28 loc) • 738 B
JavaScript
//#region src/namespaces/podcast/common/config.ts
const uris = [
"https://podcastindex.org/namespace/1.0",
"http://podcastindex.org/namespace/1.0",
"https://podcastindex.org/namespace/1.0/",
"http://podcastindex.org/namespace/1.0/",
"https://github.com/Podcastindex-org/podcast-namespace/blob/main/docs/1.0.md"
];
const stopNodes = [
"*.podcast:locked",
"*.podcast:funding",
"*.podcast:soundbite",
"*.podcast:person",
"*.podcast:location",
"*.podcast:season",
"*.podcast:episode",
"*.podcast:trailer",
"*.podcast:license",
"*.podcast:guid",
"*.podcast:medium",
"*.podcast:contentlink",
"*.podcast:block",
"*.podcast:txt",
"*.podcast:updatefrequency"
];
//#endregion
exports.stopNodes = stopNodes;
exports.uris = uris;