Skip to content
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

Merged
merged 2 commits into from
Jan 24, 2025

Conversation

reakaleek
Copy link
Member

@reakaleek reakaleek commented Jan 24, 2025

Closes #288

@reakaleek reakaleek added the fix label Jan 24, 2025
@reakaleek reakaleek requested a review from Mpdreamz January 24, 2025 10:10
@@ -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)))
Copy link
Member Author

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?

Copy link
Member

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);

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

@Mpdreamz Mpdreamz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One nit

@reakaleek reakaleek self-assigned this Jan 24, 2025
@reakaleek reakaleek requested a review from Mpdreamz January 24, 2025 12:58
@reakaleek reakaleek merged commit d5f8dff into main Jan 24, 2025
5 checks passed
@reakaleek reakaleek deleted the feature/case-insensitive-link-checking branch January 24, 2025 14:55
@reakaleek reakaleek changed the title Caseinsensitive anchor link check Case-insensitive anchor link check Jan 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Make anchor link checking case-insensitive
2 participants