SPB Git forge

spb/countryatlas

Public
20commits 1branches 0releases
268.3 MBsize
maindefault branch
12 days agolast push
TypeScript 57% Python 38.6% JavaScript 3.6% CSS 0.6%
300 B · 5 lines typescript
Raw Blame History
1/** Stable anchor id for a subtopic name (plain module: callable from server and client components). */2export function subtopicAnchor(prefix: string, subtopic: string): string {3  return `${prefix}-${subtopic.toLowerCase().replace(/&/g, 'and').replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, '')}`;4}5