pub fn slugify(s: &str) -> String
Convert an arbitrary string into a URL-safe slug: lowercase, replace non-alphanumeric chars with -, collapse runs of -.
-