package modules import ( "strings" ) func CategoryName(c Category) string { return strings.Replace(strings.ToLower(c.String()), "category", "", -1) }