func github.com/yuin/goldmark/util.IsAlphaNumeric
8 uses
github.com/yuin/goldmark/util (current package)
util.go#L648: i, ok = ReadWhile(source, [2]int{start, limit}, IsAlphaNumeric)
util.go#L845: func IsAlphaNumeric(c byte) bool {
github.com/yuin/goldmark/extension
linkify.go#L224: if util.IsAlphaNumeric(line[i]) {
github.com/yuin/goldmark/parser
parser.go#L86: if util.IsAlphaNumeric(v) {
raw_html.go#L29: if len(line) > 1 && util.IsAlphaNumeric(line[1]) {
raw_html.go#L32: if len(line) > 2 && line[1] == '/' && util.IsAlphaNumeric(line[2]) {
github.com/yuin/goldmark/renderer/html
html.go#L755: i, ok = util.ReadWhile(source, [2]int{start, limit}, util.IsAlphaNumeric)
github.com/yuin/goldmark-emoji
emoji.go#L241: if !(util.IsAlphaNumeric(c) || c == '_' || c == '-' || c == '+') {
![]() |
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. |