fix escapes

This commit is contained in:
Joe Danziger
2025-05-09 02:41:09 -04:00
parent 7eba5dfa34
commit 4c2c9a93c9

View File

@@ -29,7 +29,7 @@ const globalReplacements = [
{ from: /Cursor/g, to: 'Cursor' },
{ from: /CURSOR/g, to: 'CURSOR' },
// 4. Handle file extensions
{ from: \/\.mdc\b/g, to: '.md' },
{ from: /\.mdc\b/g, to: '.md' },
// 5. Handle any missed URL patterns
{ from: /docs\.cursor\.com/gi, to: 'docs.cursor.com' }
];