pub fn slugify(url: &str) -> String {
    url.replace(['_', ' '], "-")
}