-
Notifications
You must be signed in to change notification settings - Fork 10
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
Case-insensitive anchor link check #341
Conversation
@@ -136,7 +136,7 @@ public override bool Match(InlineProcessor processor, ref StringSlice slice) | |||
if (!string.IsNullOrEmpty(anchor)) | |||
{ | |||
if (markdown == null || (!markdown.TableOfContents.TryGetValue(anchor, out var heading) | |||
&& !markdown.AdditionalLabels.Contains(anchor))) | |||
&& !markdown.AdditionalLabels.Contains(anchor, StringComparer.OrdinalIgnoreCase))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Mpdreamz What do you think about this?
What are additional labels actually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are anchors discovered on the page. The property name is bad :)
Hashset supports a string comparer at creation time too.
new HashSet(StringComparer.OrdinalIgnoreCase);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One nit
Closes #288