func github.com/russross/blackfriday/v2.ispunct

11 uses

	github.com/russross/blackfriday/v2 (current package)
		inline.go#L1138: 				if !(i+1 == len(data) || isspace(data[i+1]) || ispunct(data[i+1])) {
		markdown.go#L805: func ispunct(c byte) bool {
		smartypants.go#L31: 	return c == 0 || isspace(c) || ispunct(c)
		smartypants.go#L58: 	case ispunct(previousChar) && nextChar == 0:
		smartypants.go#L70: 	case ispunct(previousChar) && isspace(nextChar):
		smartypants.go#L76: 	case previousChar == 0 && ispunct(nextChar):
		smartypants.go#L79: 	case isspace(previousChar) && ispunct(nextChar):
		smartypants.go#L82: 	case ispunct(previousChar) && ispunct(nextChar):
		smartypants.go#L85: 	case /* isnormal(previousChar) && */ ispunct(nextChar):
		smartypants.go#L94: 	case ispunct(previousChar) /* && isnormal(nextChar) */ :