Open marcus7777 opened 4 days ago
const RSS_URL = `https://anchor.fm/s/664feec4/podcast/rss`; let doc = {} let items = [] fetch(RSS_URL) .then(response => response.text()) .then(str => new window.DOMParser().parseFromString(str, "text/xml")) .then(data => { // main console.log(data.querySelectorAll("rss > channel > image > url")[0].textContent) // subs data.querySelectorAll("rss > channel > item").forEach(item => { items.push(item) }) })
used local storage to Mark Ash's of each episode as played
Display cards without saving how?
This is in but still buggy
used local storage to Mark Ash's of each episode as played