-
I have a listing in a quarto website (c.f. yaml configuration below). I would like to select a specific category to display only the post inside this category by default (e.g. a category "ongoing" for ongoing stuff). The reader would then need to click on "All" in the category sidebar to see all posts. Would that be possible? listing:
id: my-listing-id
contents: my-content
sort: "date desc"
type: default
categories: true
page-size: 10
sort-ui: [date, title, author]
filter-ui: true Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Probably in the |
Beta Was this translation helpful? Give feedback.
Probably in the
_quarto.yml
by adding#category=<category-name>
inhref
for the element you want to target a specific category.Or any other method of your choice (especially if above does not work) to add
#category=<category-name>
to the link.