Avoid a website listing parsing an invalid thumbnail image from an empty meta image of its item which does not even consider it as a preview image #12222
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
I added some tests which explain this description.
Rendering a website document where metadata key
image
has a value of an empty string""
has no problem. It works as well as if there were no such key set, and a preview image, if exists, is successfully chosen as a thumbnail image on a website listing:quarto-cli/tests/docs/smoke-all/2025/03/07/issue-12222/posts/preview-image-and-empty-meta-image/index.qmd
Lines 13 to 18 in 81a5d78
However, rendering another document that sets the aforementioned document as one of its
listing
contents
fails to find a thumbnail image, and it refers to itself since the empty string is parsed as the relative path to itself:quarto-cli/tests/docs/smoke-all/2025/03/07/issue-12222/index.qmd
Lines 1 to 4 in 81a5d78
This causes an infinite loop of rendering a website listing on
quarto preview
.The inconsistent rendering behavior between those two website documents results from the following two blocks of lines:
quarto-cli/src/project/types/website/website-meta.ts
Lines 298 to 314 in 42a13e1
quarto-cli/src/project/types/website/listing/website-listing-read.ts
Lines 1125 to 1130 in 7408297
pageImage
ignores both an empty string orundefined
, which leads to successful detection of a preview image. On the contrary,image
discards onlyundefined
or anything other thanstring
, and parses an empty string into the relative path to the listing item because it is a string.This pull request fixes the special parser that website listings use to parse the thumbnail images from their items' preview images, in order to make it correspond to the individual renderer that the very items use to parse their preview images and ignores an empty meta
image
, since their final rendering is supposed to have a higher priority over their listings on other documents.Checklist
I have (if applicable):