github.com/yuin/goldmark/text.Segment.Value (method)

32 uses

	github.com/yuin/goldmark/text (current package)
		reader.go#L107: 	return seg.Value(r.source)
		reader.go#L123: 			r.peekedLine = r.pos.Value(r.Source())
		reader.go#L383: 		return r.pos.Value(r.source), r.pos
		segment.go#L42: func (t *Segment) Value(buffer []byte) []byte {

	github.com/yuin/goldmark/ast
		ast.go#L447: 			fmt.Printf("%s", line.Value(source))
		block.go#L260: 		info := segment.Value(source)
		block.go#L475: 		fmt.Printf("%sClosure: \"%s\"\n", indent2, string(cl.Value(source)))
		inline.go#L146: 	return n.Segment.Value(source)
		inline.go#L301: 		if !util.IsBlank(text.Value(source)) {
		inline.go#L474: 		"Value": string(segment.Value(source)),
		inline.go#L529: 		t = append(t, string(segment.Value(source)))

	github.com/yuin/goldmark/extension
		table.go#L183: 	line := segment.Value(source)
		table.go#L246: 	line := segment.Value(reader.Source())

	github.com/yuin/goldmark/parser
		atx_heading.go#L197: 		line = lastLine.Value(reader.Source())
		atx_heading.go#L209: 	line := lastLine.Value(reader.Source())
		code_block.go#L70: 		if util.IsBlank(line.Value(source)) {
		delimiter.go#L76: 	return d.Segment.Value(source)
		html_block.go#L169: 			if htmlBlockType1CloseRegexp.Match(firstLine.Value(reader.Source())) {
		html_block.go#L198: 			if bytes.Contains(firstLine.Value(reader.Source()), closurePattern) {
		link.go#L38: 	return s.Segment.Value(source)

	github.com/yuin/goldmark/renderer/html
		html.go#L193: 		r.Writer.RawWrite(w, line.Value(source))
		html.go#L299: 				_, _ = w.Write(line.Value(source))
		html.go#L308: 				_, _ = w.Write(closure.Value(source))
		html.go#L477: 			value := segment.Value(source)
		html.go#L595: 			_, _ = w.Write(segment.Value(source))
		html.go#L610: 		r.Writer.RawWrite(w, segment.Value(source))
		html.go#L612: 		r.Writer.Write(w, segment.Value(source))

	golang.org/x/pkgsite/internal/frontend
		goldmark.go#L125: 				d, err := translateHTML(line.Value(source), r.info, r.readme)
		goldmark.go#L138: 				_, _ = w.Write(closure.Value(source))
		goldmark.go#L155: 			d, err := translateHTML(segment.Value(source), r.info, r.readme)
		styleguide.go#L155: 		w.Write(line.Value(source))
		styleguide.go#L163: 		w.Write([]byte(html.EscapeString(string(line.Value(source)))))