[Sync to prerelease] Fix missing link on Documents breadcrumb in Guide sidebar#2005
Merged
cderv merged 1 commit intoprereleasefrom Apr 29, 2026
Merged
[Sync to prerelease] Fix missing link on Documents breadcrumb in Guide sidebar#2005cderv merged 1 commit intoprereleasefrom
cderv merged 1 commit intoprereleasefrom
Conversation
(cherry picked from commit e8cefb7)
Member
|
/deploy-preview |
Contributor
Author
📝 Preview Deployment🔍 Full site preview: https://deploy-preview-2005.quarto.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
Sync of #2004 to
prerelease.Original PR
Fix missing link on Documents breadcrumb in Guide sidebar
When clicking the
Documentsbreadcrumb on Guide format pages (e.g.,docs/output-formats/html-basics.html), the breadcrumb shows no link. TheDocumentssection has nohref:and its first child is itself a section, so the CLI fallback tocontents[0].hrefproduces nothing.Add
href: docs/output-formats/all-formats.qmdon theDocumentssection. The page already exists and is the natural landing for this group.Inner Guide sub-sections (HTML, PDF, MS Word, Typst, Markdown) hit the same bug but need new overview content rather than just a navigation tweak, so they continue to inherit the unresolved CLI default tracked in quarto-dev/quarto-cli#14454.
Reported in quarto-dev/quarto-cli#14402.