spb/countryatlas
Public
TypeScript 57%
Python 38.6%
JavaScript 3.6%
CSS 0.6%
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