github.com/russross/blackfriday/v2.Node.FirstChild (field)

11 uses

	github.com/russross/blackfriday/v2 (current package)
		block.go#L1183: 	item := block.FirstChild
		block.go#L1192: 		subItem := item.FirstChild
		html.go#L812: 			if node.FirstChild == nil {
		node.go#L118: 	FirstChild *Node    // Points to the first child, if any
		node.go#L159: 		n.Parent.FirstChild = n.Next
		node.go#L181: 		n.FirstChild = child
		node.go#L198: 		sibling.Parent.FirstChild = sibling
		node.go#L317: 		if nw.current.FirstChild != nil {
		node.go#L318: 			nw.current = nw.current.FirstChild
		node.go#L346: 	for n := ast.FirstChild; n != nil; n = n.Next {

	golang.org/x/pkgsite/internal/postgres
		searchdoc.go#L209: 	for c := n.FirstChild; c != nil; c = c.Next {