func SubstantiveTextsNormalizer()

in pkg/license/norm.go [300:305]


func SubstantiveTextsNormalizer(text string) string {
	for _, s := range substitutableTexts {
		text = s.regex.ReplaceAllString(text, s.replacement)
	}
	return text
}