Press n or j to go to the next uncovered block, b, p or k for the previous block.
export function slugify(name: string): string { return name .toLowerCase() .replace(/[^a-z0-9]+/g, "-") .replace(/^-|-$/g, ""); }