1
2
3
pub fn title_to_slug(title: &str) -> String {
    title.replace(' ', "_")
}