in pkg/license/norm.go [282:288]
func Normalize(license string) string { ns := append([]Normalizer{CommentIndicatorNormalizer}, normalizers...) for _, normalize := range ns { license = normalize(license) } return license }