docs: fix 14 broken /docs/specs/ links in release-notes/index.md#57
Draft
bblietz wants to merge 1 commit into
Draft
docs: fix 14 broken /docs/specs/ links in release-notes/index.md#57bblietz wants to merge 1 commit into
bblietz wants to merge 1 commit into
Conversation
The /docs/specs/ legacy prefix doesn't resolve in the renderer; the current home is /docs/specifications/ (which case-insensitively maps to the docs/SPECIFICATIONS/ filesystem dir per established repo convention -- 226 existing in-repo absolute links use lowercase). All target files and anchors verified: - /docs/specifications/media/content-protection.md (#playready, #widevine) - /docs/specifications/media/dash-if.md (#updates, #utctiming) - /docs/specifications/media/index.md (#supported-image-formats) Scope: only release-notes/index.md. The 3 remaining broken /docs/specs/ links (all on ovp-linear-ingest-spec.md:713, target the deleted json-dp-spec.md) are carved out for a separate PR pending a content decision on whether to replace, delete, or restore the missing spec. Lint baseline preserved: lint runs clean on the changed file.
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 14 broken
/docs/specs/links indocs/DEVELOPER/release-notes/index.md. The legacy/docs/specs/prefix doesn't resolve in the renderer; current home is/docs/specifications/.This is step 4a of the audit § 16 link sweep (the smallest, lowest-risk bucket). Part of the audit cleanup series (see #52, #54, #55).
Verification
Every target file + anchor verified present in the repo before rewrite:
/docs/specifications/media/content-protection.md#playready,#widevine/docs/specifications/media/dash-if.md#updates,#utctiming/docs/specifications/media/index.md#supported-image-formatsPath convention
Lowercase per established repo convention (renderer is case-insensitive; 226 existing in-repo absolute links use the lowercase form e.g.
/docs/references/...,/docs/developer/...).Scope notes
release-notes/index.md-- the audit identified 17 broken/docs/specs/link instances in the repo; 14 are here, the remaining 3 (all onovp-linear-ingest-spec.md:713) link to the deletedjson-dp-spec.mdand need a content decision (replace, delete, or restore) before being fixed in a separate PR.broken-absolute-link-prefixrule covering all known-bad legacy prefixes (/docs/specs/,/docs/developer-program/,/dev/docs/,/docs/references/orphans) will land at the end of the link-sweep series once all sub-PRs have cleared the offending prefixes.Verification
node .github/scripts/docs-lint/index.mjs docs/DEVELOPER/release-notes/index.md→ No issues found.grep -c "/docs/specs/" docs/DEVELOPER/release-notes/index.md→ 0 after; 14 before.grep -c "/docs/specifications/" docs/DEVELOPER/release-notes/index.md→ 12 (some lines had multiple links).🤖 Generated with Claude Code