docs: add markdown_url front matter so the About page links to /docs.md - #28281
Merged
nickvigilante merged 1 commit intoAug 19, 2026
Conversation
The About page renders at /docs/about but its Markdown lives at /docs.md. Add a markdown_url override so the docs site advertises the correct Markdown alternate instead of the nonexistent /docs/about.md. > This PR was created with AI assistance (Coder Agents).
Contributor
Docs previewCheck off each page once it's been reviewed. If a page changes in a later push, its checkbox clears automatically so it gets a fresh look. Pages not yet wired into the docs navigation aren't listed here. |
nickvigilante
deleted the
vigilante/docs-678-add-markdown_url-front-matter-to-docsreadmemd-so-the-about
branch
August 19, 2026 14:37
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The docs About page renders at
/docs/about, but its Markdown source is the docs rootREADME.md, whose Markdown twin is/docs.md. The path-derived mapping (/docs/about->/docs/about.md) points the "Copy page / view as Markdown" affordance and the sitewiderel="alternate"link at a URL that 404s for this page.Add a
markdown_url: /docs.mdfront-matter override todocs/README.md. It is inert for rendering and for/docs.mditself (the body still begins at# About); it only populates the front matter the docs site reads to advertise the correct Markdown alternate.Reader side: coder/coder.com#1013 (DOCS-638). Neither change breaks without the other, so they can merge in either order.
Refs DOCS-678