We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for this library, it’s great.
However, according to the Apple docs, for a feed to validate on itunes podcasts the itunes:category tag should be self closing:
<itunes:category text="History" />
But node-rss produces:
<itunes:category text="History"> </itunes:category>
So the feed doesn’t validate on itunes.
Is there a way to specify the feed options so as to get the self closing tag version?
Updated - Here is the config I am using:
{'itunes:category': [ {_attr: { text: ‘History' }} ]}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for this library, it’s great.
However, according to the Apple docs, for a feed to validate on itunes podcasts the itunes:category tag should be self closing:
<itunes:category text="History" />
But node-rss produces:
<itunes:category text="History"> </itunes:category>
So the feed doesn’t validate on itunes.
Is there a way to specify the feed options so as to get the self closing tag version?
Updated - Here is the config I am using:
{'itunes:category': [
{_attr: {
text: ‘History'
}}
]}
The text was updated successfully, but these errors were encountered: