You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A list of formatted RSS feed items. See [Astro's RSS items documentation](https://docs.astro.build/en/guides/rss/#generating-items) for usage examples to choose the best option for you.
114
114
115
-
When providing a formatted RSS item list, see the [`RSSFeedItem` type reference below](#rssfeeditem).
115
+
When providing a formatted RSS item list, see the [`RSSFeedItem` type reference](#rssfeeditem).
An `RSSFeedItem` is a single item in the list of items in your feed. It represents a story, with `link`, `title` and `pubDate` fields. There are further optional fields defined below. You can also check the definitions for the fields in the [RSS spec](https://validator.w3.org/feed/docs/rss2.html#ltpubdategtSubelementOfLtitemgt).
190
+
An `RSSFeedItem` is a single item in the list of items in your feed. It represents a story, with `link`, `title`, and `pubDate` fields. There are further optional fields defined below. You can also check the definitions for the fields in the [RSS spec](https://validator.w3.org/feed/docs/rss2.html#ltpubdategtSubelementOfLtitemgt).
191
191
192
192
An example feed item might look like:
193
193
@@ -255,7 +255,7 @@ The URL of a web page that contains comments on the item.
255
255
256
256
Type: `object (optional)`
257
257
258
-
An object that defines the `title` and `url` of the original feed for items that have been republished from another source. Both are required propeties of `source` for proper attribution.
258
+
An object that defines the `title` and `url` of the original feed for items that have been republished from another source. Both are required properties of `source` for proper attribution.
259
259
260
260
```js
261
261
const item = {
@@ -274,7 +274,7 @@ const item = {
274
274
275
275
Type: `string (required)`
276
276
277
-
The name of the original feed in which the item was published. (Note that this is the the feed's title, not the individual article title.)
277
+
The name of the original feed in which the item was published. (Note that this is the feed's title, not the individual article title.)
0 commit comments