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

4 uses

	github.com/yuin/goldmark/util (current package)
		util.go#L830: func IsSpaceRune(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#L131: 		beforeIsWhitespace := util.IsSpaceRune(before)
		delimiter.go#L133: 		afterIsWhitespace := util.IsSpaceRune(after)