Duplicate post summary in blog #2763
-
In my blog at https://hbiostat.org/blog you'll see that the article summary for the most recently posted article is duplicated, with an extra entry at the top that does not contain the title, date, or author, and has reading minutes of 0. Here's key elements of my setup: _quarto.yml
index.qmd
post/index.qmd
talk/index.qmd
Any help appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 13 replies
-
I think the issue is very likely that we're matching some document / file in the file system that is empty (we read the description as rendered HTML out of the output file, so this would require us to both match an empty input file, but also then to somehow get fooled into using a wrong output file). I did make a change to simply ignore fully empty documents (documents with no metadata), which could potentially resolve this, though it would be great to get to the bottom of the mystery. Can you remind me whether I could take a look at the repo to see if I could reproduce it locally and see if I can catch this one? |
Beta Was this translation helpful? Give feedback.
I think the issue is very likely that we're matching some document / file in the file system that is empty (we read the description as rendered HTML out of the output file, so this would require us to both match an empty input file, but also then to somehow get fooled into using a wrong output file). I did make a change to simply ignore fully empty documents (documents with no metadata), which could potentially resolve this, though it would be great to get to the bottom of the mystery.
Can you remind me whether I could take a look at the repo to see if I could reproduce it locally and see if I can catch this one?