Fix markdown lint errors in 11.0.0-preview.6 release notes#10477
Open
rbhanda wants to merge 1 commit into
Open
Fix markdown lint errors in 11.0.0-preview.6 release notes#10477rbhanda wants to merge 1 commit into
rbhanda wants to merge 1 commit into
Conversation
Resolves markdownlint failures reported by Super-Linter: - MD012: remove extra consecutive blank lines under 'Notable Changes' in release-notes/11.0/preview/preview6/11.0.0-preview.6.md - MD053: remove duplicate '11.0.0-preview.6' link reference definition in releases.md (already defined with the supported-releases block) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 45f320a2-30a4-4fb1-ad88-980b77a7a683
Contributor
|
It is also complaining about the linux link that is not working |
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.
Fixes markdown lint errors reported by Super-Linter (
.github/linters/.markdown-lint.yml) in files that landed with PR #10476 (.NET 11.0.0-preview.6 artifacts).Changes
release-notes/11.0/preview/preview6/11.0.0-preview.6.md: collapsed three consecutive blank lines under### Notable Changesdown to one.releases.md: removed the duplicate[11.0.0-preview.6]link reference definition (it is already defined in the supported-releases definition block near the top).Scope note
These are the safe, unambiguous lint fixes. The preview6 notes also trip 63 MD053 "unused reference definition" errors for the download-asset labels (e.g.
[dotnet-sdk-win-x64.tar.gz]), which appear to be a release-notes generator/template issue (the definitions are emitted but never referenced). Those are intentionally left out of this PR so they can be addressed at the generator level rather than by hand-deleting generated content.