### Rule details This rule should warn when a link fragment does not match any of the fragments that are automatically generated for headings in a document ### What type of rule is this? Warns about a potential problem ### Example code Incorrect Code ```markdown # Heading Name [Link](#fragment) ``` Correct Code ```markdown # Heading Name [Link](#heading-name) ``` ### Participation - [x] I am willing to submit a pull request to implement this rule. ### Additional comments Prior At: [Rule](https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md051---link-fragments-should-be-valid)