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.
2 parents f60886a + 73954a2 commit a5807e5Copy full SHA for a5807e5
packages/notion-utils/src/normalize-title.ts
@@ -2,7 +2,7 @@ export const normalizeTitle = (title?: string | null): string => {
2
return (title || '')
3
.replace(/ /g, '-')
4
.replace(
5
- /[^a-zA-Z0-9-\u4e00-\u9FFF\u3041-\u3096\u30A1-\u30FC\u3000-\u303F]/g,
+ /[^a-zA-Z0-9-\u4e00-\u9fa5\uac00-\ud7af\u4e00-\u9fff\u3041-\u3096\u30a1-\u30fc\u3000-\u303f]/g,
6
''
7
)
8
.replace(/--/g, '-')
0 commit comments