regexp.Regexp.FindSubmatchIndex (method)

11 uses

	regexp (current package)
		regexp.go#L1028: func (re *Regexp) FindSubmatchIndex(b []byte) []int {

	github.com/yuin/goldmark/extension
		linkify.go#L188: 			m = s.LinkifyConfig.URLRegexp.FindSubmatchIndex(line)
		linkify.go#L193: 				m = s.LinkifyConfig.URLRegexp.FindSubmatchIndex(line)
		linkify.go#L199: 		m = s.LinkifyConfig.WWWRegexp.FindSubmatchIndex(line)
		linkify.go#L245: 			m := s.LinkifyConfig.EmailRegexp.FindSubmatchIndex(line)
		tasklist.go#L47: 	m := taskListRegexp.FindSubmatchIndex(line)

	github.com/yuin/goldmark/parser
		html_block.go#L121: 	if m := htmlBlockType1OpenRegexp.FindSubmatchIndex(line); m != nil {
		html_block.go#L131: 	} else if match := htmlBlockType7Regexp.FindSubmatchIndex(line); match != nil {
		html_block.go#L143: 		if match := htmlBlockType6Regexp.FindSubmatchIndex(line); match != nil {
		raw_html.go#L61: 	match := reg.FindSubmatchIndex(line)

	github.com/yuin/goldmark/util
		util.go#L787: 	match := emailDomainRegexp.FindSubmatchIndex(b[i:])