Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for inlineText (0.15 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    func blocksText(bs []md.Block) string {
    	var d strings.Builder
    	for _, b := range bs {
    		io.WriteString(&d, text(b))
    		fmt.Fprintln(&d)
    	}
    	return d.String()
    }
    
    // inlineText returns all the next in a slice of inline nodes.
    func inlineText(ins []md.Inline) string {
    	var buf bytes.Buffer
    	for _, in := range ins {
    		in.PrintText(&buf)
    	}
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top