export function makeSlug(t: string) { return t .replaceAll(/\P{General_Category=Letter}/gu, "-") .replaceAll(/-+/g, "-"); }