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.

- Nightly Builds.md: the VS Marketplace link was double-encoded
  (itemName%253D... decodes to itemName%3D..., not itemName=...),
  which returns HTTP 404. Replaced %253D with =, which resolves 200.
- handbook-v2/Basics.md: removed a stray closing </a> in the preamble
  front-matter HTML that had no matching opening tag.
- declaration-files/Publishing.md: closed an unmatched double-quote
  inside an inline code span ("./index.v3.d.ts -> "./index.v3.d.ts").

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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