This commit is contained in:
Zef Hemel
2023-07-02 11:46:23 +02:00
parent 7c825348b2
commit 4a88b5636e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export function mdExtensionSyntaxConfig({
if (!firstCharCodes.includes(next)) {
return -1;
}
let match = regex.exec(cx.slice(pos, cx.end));
const match = regex.exec(cx.slice(pos, cx.end));
if (!match) {
return -1;
}