package utils import "strings" func TitleToSlug(title string) string { return strings.ToLower(strings.ReplaceAll(title, " ", "-")) }