pub fn slugify(input: &str) -> String
Convert a human-readable label into a URL-safe slug.
Lowercases all characters, replaces runs of non-alphanumeric characters with a single dash, and strips leading/trailing dashes.