docs: fix broken cross-reference links after the docs restructure - #1936
Open
devorun wants to merge 1 commit into
Open
docs: fix broken cross-reference links after the docs restructure#1936devorun wants to merge 1 commit into
devorun wants to merge 1 commit into
Conversation
Collaborator
🟡 Heimdall Review Status
|
This was referenced Sep 8, 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.
What changed? Why?
The recent information-architecture restructure moved several pages under new paths but left some cross-references pointing at the old locations or at anchors that no longer resolve. This repairs six of them:
/base-chain/specs/upgrades/denim/...paths, which no longer exist. Updated to/upgrades/denim/....upgrades/denim/200ms-blocks.mdx→migrate-from-flashblocksupgrades/denim/migrate-from-flashblocks.mdx→200ms-blocksprecompiles#P256VERIFY; generated anchors are lowercased, so the heading## P256VERIFYresolves as#p256verify. Fixed the fragment case (the sibling links in the same list already use lowercase).exec-engine#da-footprint-limit, but the heading is## DA Footprint Block Limit→#da-footprint-block-limit.eth_calland the Flashblocks API overview targeted<Accordion>titles, which do not generate anchors. Repointed to the headings of the sections that contain those accordions (#rpcand#websocket).Notes to reviewers
All six are one-line fragment/path fixes; no page content changes. Verified each target: the Denim pages exist under
/upgrades/denim/(the old paths are not covered by any redirect),## P256VERIFYand## DA Footprint Block Limitexist on their pages, and the two FAQ answers sit under the## RPCand## WebSocketheadings on/specifications/flashblocks. This supersedes my four earlier single-fix PRs (#1838, #1841, #1843, #1844), which were opened against the pre-restructure paths; I'm closing those in favor of this one.How has it been tested?
Ran a repo-wide link/anchor pass against the current
master; these six links resolve to no existing target, and the replacements match existing headings/paths.