Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/parser/phase/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ const feeds: FeedUpdate[] = [
phase7.podcastChat,
phase7.podcastPublisher,

// Phase 8 - Currently no tags implemented
// phase8.* tags will be added here as they are implemented

pending.id,
pending.social,
pending.podcastRecommendations,
Expand Down
23 changes: 23 additions & 0 deletions src/parser/phase/phase-8.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Phase 8 - Podcast Namespace
// This phase will contain podcast namespace tags that are confirmed for Phase 8
// Currently no tags are implemented in this phase

// Placeholder for future Phase 8 implementations
// Example structure for future tags:
// export const exampleTag = {
// phase: 8,
// name: "example",
// tag: "podcast:example",
// nodeTransform: firstIfArray,
// supportCheck: (node: XmlNode): boolean => Boolean(getAttribute(node, "requiredAttr")),
// fn(node: XmlNode): { exampleTag: ExampleType } {
// return {
// exampleTag: {
// // extracted properties
// },
// };
// },
// };

// Export empty object to make this a valid module
export {};