const golang.org/x/net/html.TextNode

14 uses

	golang.org/x/net/html (current package)
		node.go#L16: 	TextNode
		parse.go#L290: 	if prev != nil && prev.Type == TextNode && n.Type == TextNode {
		parse.go#L307: 			Type: TextNode,
		parse.go#L314: 	if n := t.LastChild; n != nil && n.Type == TextNode {
		parse.go#L319: 		Type: TextNode,
		render.go#L73: 	case TextNode:
		render.go#L188: 	if c := n.FirstChild; c != nil && c.Type == TextNode && strings.HasPrefix(c.Data, "\n") {
		render.go#L201: 			if c.Type == TextNode {

	golang.org/x/pkgsite/internal/testing/htmlcheck
		htmlcheck.go#L162: 	case html.TextNode:

	github.com/andybalholm/cascadia
		selector.go#L459: 	case html.TextNode:
		selector.go#L480: 		if c.Type == html.TextNode {
		selector.go#L685: 		case html.ElementNode, html.TextNode:
		selector.go#L795: 			if n.Type == html.TextNode || n.Type == html.CommentNode {