added escape support on matching text

This commit is contained in:
2025-01-22 08:59:53 -07:00
parent d581569c7a
commit 4005c85d60
7 changed files with 117 additions and 28 deletions

View File

@@ -0,0 +1,4 @@
export function escapeMatchingText(input: string){
return input.replaceAll("\\-", "-");
}