Skip to content

docs: fix broken marketplace link and two markup errors#3590

Open
EduardF1 wants to merge 1 commit into
microsoft:v2from
EduardF1:docs/fix-broken-link-and-markup
Open

docs: fix broken marketplace link and two markup errors#3590
EduardF1 wants to merge 1 commit into
microsoft:v2from
EduardF1:docs/fix-broken-link-and-markup

Conversation

@EduardF1

Copy link
Copy Markdown

Summary

Three small, objectively-correct documentation fixes in the English copy.

1. Nightly Builds.md — broken VS Marketplace link (404)

The link to the JavaScript and TypeScript Nightly extension was double-encoded: itemName%253D.... %25 is an encoded %, so the server receives itemName%3D... (literal %3D) instead of itemName=..., and the page returns HTTP 404. Replacing %253D with = resolves to HTTP 200.

  • Before: .../items?itemName%253Dms-vscode.vscode-typescript-next → 404
  • After: .../items?itemName=ms-vscode.vscode-typescript-next → 200

2. handbook-v2/Basics.md — stray </a> in preamble HTML

The preamble front-matter HTML contained an extra closing </a> with no matching opening tag (the Getting Started anchor was already closed). Removed the orphan tag.

3. declaration-files/Publishing.md — unmatched quote in code span

An inline code span opened a double-quote that was never closed: "./index.v3.d.ts. Closed it to "./index.v3.d.ts" to match the surrounding "package-name" example.

Validation

  • Verified the broken link returns 404 and the corrected link returns 200 against marketplace.visualstudio.com.
  • The other two are markdown/HTML correctness fixes confirmed against the surrounding context. Docs-copy only; no app/build code touched.

Fix the double-encoded VS Marketplace URL in Nightly Builds, remove the stray handbook preamble closing tag, and close the inline code quote in the declaration publishing docs.
@EduardF1 EduardF1 force-pushed the docs/fix-broken-link-and-markup branch from f5d8e98 to 30a8f06 Compare June 30, 2026 12:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant