Fix inline array example fence - #1777
Merged
BillWagner merged 1 commit intoAug 12, 2026
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 5324a812-2152-4917-8916-a73f37ba30a8
jskeet
approved these changes
Aug 12, 2026
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.
Summary
Fixes a Markdown structure defect that prevented bookmark generation for §16.7 and §16.8 sections.
Root Cause
The opening code fence in the blockquoted inline-array example (near line 557) was not blockquoted, while its closing fence was. This asymmetry caused Markdown parsing to swallow §16.7 through §16.8.8.2 as code content, preventing Docfx from generating anchors for these headings.
Changes
The fence is now balanced, restoring proper Markdown parsing.
Impact
Resolves 12 unique missing anchor targets across §16.7 and §16.8 sections. All current warnings in dotnet/docs#55428 related to structs.md headings are fixed.
Validation
CI Note
Full standard/*.md markdownlint scan has 13 pre-existing base issues in attributes.md, classes.md, and variables.md on alpha-v12. This PR does not touch those files and does not introduce new issues.