We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f7552d commit d5f8dffCopy full SHA for d5f8dff
src/Elastic.Markdown/IO/MarkdownFile.cs
@@ -60,10 +60,10 @@ public string? NavigationTitle
60
}
61
62
//indexed by slug
63
- private readonly Dictionary<string, PageTocItem> _tableOfContent = new();
+ private readonly Dictionary<string, PageTocItem> _tableOfContent = new(StringComparer.OrdinalIgnoreCase);
64
public IReadOnlyDictionary<string, PageTocItem> TableOfContents => _tableOfContent;
65
66
- private readonly HashSet<string> _additionalLabels = new();
+ private readonly HashSet<string> _additionalLabels = new(StringComparer.OrdinalIgnoreCase);
67
public IReadOnlySet<string> AdditionalLabels => _additionalLabels;
68
69
public string FilePath { get; }
0 commit comments