func github.com/yuin/goldmark/util.IndentWidth
12 uses
github.com/yuin/goldmark/util (current package)
util.go#L253: func IndentWidth(bs []byte, currentPos int) (width, pos int) {
github.com/yuin/goldmark/extension
definition_list.go#L42: w, _ := util.IndentWidth(line[pos+1:], pos+1)
definition_list.go#L80: w, _ := util.IndentWidth(line, reader.LineOffset())
github.com/yuin/goldmark/parser
blockquote.go#L22: w, pos := util.IndentWidth(line, reader.LineOffset())
fcode_block.go#L79: w, pos := util.IndentWidth(line, reader.LineOffset())
link_ref.go#L60: width, pos := util.IndentWidth(line, 0)
list.go#L60: w, _ := util.IndentWidth(line[i:], 0)
list.go#L91: offset, _ = util.IndentWidth(source[match[4]:], match[4])
list.go#L181: indent, _ := util.IndentWidth(line, reader.LineOffset())
list_item.go#L61: indent, _ := util.IndentWidth(line, reader.LineOffset())
parser.go#L919: w, pos := util.IndentWidth(line, reader.LineOffset())
thematic_break.go#L21: w, pos := util.IndentWidth(line, offset)
 |
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. |