RSS feed for listing page with multiple listings and YAML listing content #8063
-
DescriptionHello, I am trying to add an RSS feed to a listing page on a quarto website. The website already has two other listing pages with functioning feeds (for presentations and a blog) however this last listing page is slightly different as it contains multiple listings and the listing contents are created as inputs in the YAML. A repro would be like this: An rss file is created (docs/publications.xml) when the page is rendered but it does not contain the listing contents: I also tried to put Quarto version: 1.3.450 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
|
Could you actually share a Git repository? |
Beta Was this translation helpful? Give feedback.
-
|
@mcanouil sorry, I'm not sure I understand, could you expand on what you mean by accessibility concerns? Thanks, for the help. |
Beta Was this translation helpful? Give feedback.



Feeds don't really know how to deal with completely arbitrary items - RSS requires a specific set of fields and it would be difficult to map arbitrary items into an RSS feed without knowing a lot about them.
As a result, we will only include items in feeds if they minimally contain a
nameand anhref(without those, the feed item wouldn't be useful in any real to readers). We'll use an itemdescription,authors, andimageif available.You'll need to specify those fields above specifically in your YAML for the various listings items if you'd like them to be included in feeds.
HTH!