func github.com/russross/blackfriday/v2.wordBoundary
11 uses
github.com/russross/blackfriday/v2 (current package)
smartypants.go#L30: func wordBoundary(c byte) bool {
smartypants.go#L138: if (t1 == 's' || t1 == 't' || t1 == 'm' || t1 == 'd') && (len(text) < 3 || wordBoundary(text[2])) {
smartypants.go#L147: (len(text) < 4 || wordBoundary(text[3])) {
smartypants.go#L198: if wordBoundary(previousChar) && wordBoundary(text[1]) {
smartypants.go#L283: if wordBoundary(previousChar) && previousChar != '/' && len(text) >= 3 {
smartypants.go#L310: if len(text) == denEnd || wordBoundary(text[denEnd]) && text[denEnd] != '/' {
smartypants.go#L325: if wordBoundary(previousChar) && previousChar != '/' && len(text) >= 3 {
smartypants.go#L327: if len(text) < 4 || wordBoundary(text[3]) && text[3] != '/' {
smartypants.go#L334: if len(text) < 4 || wordBoundary(text[3]) && text[3] != '/' || (len(text) >= 5 && tolower(text[3]) == 't' && tolower(text[4]) == 'h') {
smartypants.go#L341: if len(text) < 4 || wordBoundary(text[3]) && text[3] != '/' || (len(text) >= 6 && tolower(text[3]) == 't' && tolower(text[4]) == 'h' && tolower(text[5]) == 's') {
 |
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. |