Ignore casing in wiki link marking

This commit is contained in:
Zef Hemel
2023-10-10 09:38:06 +02:00
parent 539f0e5326
commit 6892756397
2 changed files with 6 additions and 3 deletions
+2 -2
View File
@@ -35,9 +35,9 @@ export function cleanWikiLinkPlugin(editor: Client) {
cleanPage = page.split("@")[0];
}
cleanPage = resolvePath(editor.currentPage!, cleanPage);
// console.log("Resolved page", resolvedPage);
const lowerCasePageName = cleanPage.toLowerCase();
for (const pageMeta of allPages) {
if (pageMeta.name === cleanPage) {
if (pageMeta.name.toLowerCase() === lowerCasePageName) {
pageExists = true;
break;
}