func github.com/yuin/goldmark/util.IsNumeric
9 uses
github.com/yuin/goldmark/util (current package)
util.go#L615: i, ok = ReadWhile(source, [2]int{start, limit}, IsNumeric)
util.go#L835: func IsNumeric(c byte) bool {
github.com/yuin/goldmark/extension
typographer.go#L221: if d.CanOpen && !d.CanClose && len(line) > 3 && util.IsNumeric(line[1]) && util.IsNumeric(line[2]) && line[3] == 's' {
github.com/yuin/goldmark/parser
attribute.go#L150: if c == '-' || c == '+' || util.IsNumeric(c) {
attribute.go#L237: if util.IsNumeric(c) {
attribute.go#L256: if !util.IsNumeric(reader.Peek()) {
list.go#L43: for ; i < l && util.IsNumeric(line[i]); i++ {
github.com/yuin/goldmark/renderer/html
html.go#L743: i, ok = util.ReadWhile(source, [2]int{start, limit}, util.IsNumeric)
![]() |
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. |