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

26 uses

	github.com/russross/blackfriday/v2 (current package)
		block.go#L638: 			for infoLength > 0 && isspace(data[infoStart]) {
		block.go#L643: 			for infoLength > 0 && isspace(data[infoStart+infoLength-1]) {
		html.go#L213: 	for i < len(tag) && isspace(tag[i]) {
		inline.go#L93: 		if c == '~' || isspace(data[1]) {
		inline.go#L105: 		if isspace(data[2]) {
		inline.go#L117: 		if c == '~' || isspace(data[3]) {
		inline.go#L305: 	for i < len(data) && isspace(data[i]) {
		inline.go#L315: 		for i < len(data) && isspace(data[i]) {
		inline.go#L367: 			for titleE > titleB && isspace(data[titleE]) {
		inline.go#L379: 		for linkE > linkB && isspace(data[linkE-1]) {
		inline.go#L902: 	return isspace(char) || char == '<'
		inline.go#L982: 			} else if data[i] == '>' || data[i] == '\'' || data[i] == '"' || isspace(data[i]) {
		inline.go#L1135: 		if data[i] == c && !isspace(data[i-1]) {
		inline.go#L1138: 				if !(i+1 == len(data) || isspace(data[i+1]) || ispunct(data[i+1])) {
		inline.go#L1162: 		if i+1 < len(data) && data[i] == c && data[i+1] == c && i > 0 && !isspace(data[i-1]) {
		inline.go#L1189: 		if data[i] != c || isspace(data[i-1]) {
		markdown.go#L815: func isspace(c byte) bool {
		smartypants.go#L31: 	return c == 0 || isspace(c) || ispunct(c)
		smartypants.go#L55: 	case isspace(previousChar) && nextChar == 0:
		smartypants.go#L64: 	case previousChar == 0 && isspace(nextChar):
		smartypants.go#L67: 	case isspace(previousChar) && isspace(nextChar):
		smartypants.go#L70: 	case ispunct(previousChar) && isspace(nextChar):
		smartypants.go#L73: 	case /* isnormal(previousChar) && */ isspace(nextChar):
		smartypants.go#L79: 	case isspace(previousChar) && ispunct(nextChar):
		smartypants.go#L91: 	case isspace(previousChar) /* && isnormal(nextChar) */ :