func github.com/yuin/goldmark/util.IsPunctRune

4 uses

	github.com/yuin/goldmark/util (current package)
		util.go#L820: func IsPunctRune(r rune) bool {

	github.com/yuin/goldmark/extension
		typographer.go#L226: 					if len(line) == 3 || util.IsSpaceRune(after) || util.IsPunctRune(after) {

	github.com/yuin/goldmark/parser
		delimiter.go#L130: 		beforeIsPunctuation := util.IsPunctRune(before)
		delimiter.go#L132: 		afterIsPunctuation := util.IsPunctRune(after)