export function normalizeTitleIdentity(title: string): string { return title .normalize('NFKC') .toLowerCase() .replace(/[^\p{L}\p{N}]+/gu, ' ') .trim() .replace(/\s+/g, ' '); }