-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: anchor link checks support HTML tags like <a name="foo"></a>
#331
Conversation
[Item 1](#item-one)
[Item 2](#item-two)
<a id="item-one">Item 1 target</a>
<a id='item-two'>Item 2 target</a> resulted in
using Would you expect single quotes to work as well as the double quotes? |
Single quotes were not yet in the scope. |
Do you plan to add them in this PR? It may be confusing to have only double quotes working if this PR is merged as is. |
I have added a new commit for supporting single quotes. |
Great work! I confirm it works! |
It would be really great to have this. Having a similar issue when adding HTML links to markdown table cells like |
@tcort I have resolved the conflicts. |
Extracts all html tags with the attribute
id
and alla
tags with the attributename
and allows them as valid section links.Ignore:
```
)`
)Fits the lint rule MD51
fixes:
#tomato
) in the same document #195related to: