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) */ :
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |