On a Quarto blog, can one set up a listing by author? #6243
-
DescriptionIs there a way to set up listings by author similar to the listings by categories https://quarto.org/docs/websites/website-listings.html#categories? I was also hoping to link author names to their post listings. From what I see in the docs, the taxonomy support in Quarto is (understandably!) less complete than with, say, Hugo? Sorry in advance if I missed something. 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Right now there isn't an automatic way to do this. Starting with Quarto 1.3, you can create listings that filter based upon a property (like authors), so you could create different listings that show only specific authors (though this isn't quite what you're looking for, I think): This example would be a listing that shows any posts with the author listing:
contents: posts
type: grid
include:
author: "{Harlow,Tristan}*" This doesn't really support the idea of linking from the author name either (e.g. in the post metadata)... I definitely agree that this would be a very nice feature for listings to support. I'll create an enhancement request for this to tracking tying to get to this soon! |
Beta Was this translation helpful? Give feedback.
-
Closing in favour of #6246 |
Beta Was this translation helpful? Give feedback.
Right now there isn't an automatic way to do this. Starting with Quarto 1.3, you can create listings that filter based upon a property (like authors), so you could create different listings that show only specific authors (though this isn't quite what you're looking for, I think):
This example would be a listing that shows any posts with the author
Harlow
orTristan
:This doesn't really support the idea of linking from the author name either (e.g. in the post metadata)... I definitely agree that this would be a very nice feature for listings to support. I'll create an enhancement request for this to trackin…