Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix <itunes:image> tags in example.xml #689

Merged
merged 1 commit into from
Feb 17, 2025
Merged
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
8 changes: 4 additions & 4 deletions example.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<itunes:email>[email protected]</itunes:email>
</itunes:owner>

<itunes:image>https://example.com/images/pci_avatar-massive.jpg</itunes:image>
<itunes:image href="https://example.com/images/pci_avatar-massive.jpg"/>

<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="podcaster" type="node" address="036557ea56b3b86f08be31bcd2557cae8021b0e3a9413f0c0e52625c6696972e57" split="99" />
Expand Down Expand Up @@ -71,7 +71,7 @@
<guid isPermaLink="true">https://example.com/ep0003</guid>
<pubDate>Fri, 09 Oct 2020 04:30:38 GMT</pubDate>
<author>John Doe ([email protected])</author>
<itunes:image>https://example.com/ep0003/artMd.jpg</itunes:image>
<itunes:image href="https://example.com/ep0003/artMd.jpg"/>
<podcast:images srcset="https://example.com/images/ep3/pci_avatar-massive.jpg 1500w,
https://example.com/images/ep3/pci_avatar-middle.jpg 600w,
https://example.com/images/ep3/pci_avatar-small.jpg 300w,
Expand Down Expand Up @@ -132,7 +132,7 @@
<guid isPermaLink="true">https://example.com/ep0002</guid>
<pubDate>Thu, 08 Oct 2020 04:30:38 GMT</pubDate>
<author>John Doe ([email protected])</author>
<itunes:image>https://example.com/ep0002/artMd.jpg</itunes:image>
<itunes:image href="https://example.com/ep0002/artMd.jpg"/>
<podcast:images srcset="https://example.com/images/ep2/pci_avatar-massive.jpg 1500w,
https://example.com/images/ep2/pci_avatar-middle.jpg 600w,
https://example.com/images/ep2/pci_avatar-small.jpg 300w,
Expand Down Expand Up @@ -183,7 +183,7 @@
<guid isPermaLink="true">https://example.com/ep0001</guid>
<pubDate>Wed, 07 Oct 2020 04:30:38 GMT</pubDate>
<author>John Doe ([email protected])</author>
<itunes:image>https://example.com/ep0001/artMd.jpg</itunes:image>
<itunes:image href="https://example.com/ep0001/artMd.jpg"/>
<podcast:images srcset="https://example.com/images/ep1/pci_avatar-massive.jpg 1500w,
https://example.com/images/ep1/pci_avatar-middle.jpg 600w,
https://example.com/images/ep1/pci_avatar-small.jpg 300w,
Expand Down