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
I am attempting to add additional fields to an rss2 feed item outside of the core Item but they do not seem to be exposed in the feed.
Item
In my item setup:
feed.addItem({ title, id: link, link, description: excerpt, date: new Date(date), extensions: [ { name: "item_extension", objects: { "dc:creator": "foo bar", }, }, ], });
Example item xml with dummy data:
<item> <title> <![CDATA[ My Page ]]> </title> <link>https://my-site.com/my-page</link> <guid>https://my-site.com/my-page</guid> <pubDate>Sat, 10 Jun 2023 01:03:37 GMT</pubDate> <description> <![CDATA[ My description. ]]> </description> </item>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am attempting to add additional fields to an rss2 feed item outside of the core
Item
but they do not seem to be exposed in the feed.In my item setup:
Example item xml with dummy data:
The text was updated successfully, but these errors were encountered: