[chore] Fix broken markdownlint anchor link in CONTRIBUTING.md#5154
Merged
reyang merged 1 commit intoJun 15, 2026
Merged
Conversation
cijothomas
force-pushed
the
cijothomas/fix-markdownlint-link
branch
from
June 14, 2026 18:05
36724f3 to
53edb54
Compare
cijothomas
marked this pull request as draft
June 14, 2026 18:06
cijothomas
marked this pull request as ready for review
June 15, 2026 15:24
reyang
approved these changes
Jun 15, 2026
reyang
enabled auto-merge
June 15, 2026 16:11
codeboten
approved these changes
Jun 15, 2026
arminru
approved these changes
Jun 15, 2026
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.
The link
https://github.com/DavidAnson/markdownlint#optionsresultversioninCONTRIBUTING.mdis broken — theoptions.resultVersionsection was removed from the upstream README in markdownlint v0.41.0 (2026-06-08), so the anchor no longer resolves. This is the only failure in themarkdown-link-checkCI job.Replacing it with
https://github.com/igorshubovych/markdownlint-cli#fixing-issues, which is a better target for two reasons:--fixflag documentation, which is what "fix markdownlint violations" actually means for a CLI user. The original anchor pointed at result-format versioning, unrelated to fixing.markdownlint-cliis the tool OTel actually invokes viamake markdownlint(declared inpackage.jsonand called from theMakefile).DavidAnson/markdownlintis the underlying Node library; contributors don't interact with it directly.