github.com/yuin/goldmark/ast.BaseNode.AppendChild (method)

14 uses

	github.com/yuin/goldmark/ast (current package)
		ast.go#L310: func (n *BaseNode) AppendChild(self, v Node) {
		ast.go#L341: 		n.AppendChild(self, insertee)
		inline.go#L438: 		c.AppendChild(c, n)

	github.com/yuin/goldmark/extension
		definition_list.go#L136: 			list.AppendChild(list, term)
		footnote.go#L96: 	list.AppendChild(list, node)
		footnote.go#L252: 	node.AppendChild(node, list)
		table.go#L165: 		table.AppendChild(table, ast.NewTableHeader(header))
		table.go#L167: 			table.AppendChild(table, b.parseRow(lines.At(j), alignments, false, reader, pc))
		table.go#L236: 		row.AppendChild(row, node)
		table.go#L240: 		row.AppendChild(row, ast.NewTableCell())

	github.com/yuin/goldmark/extension/ast
		table.go#L127: 		n.AppendChild(n, c)

	github.com/yuin/goldmark/parser
		code_span.go#L48: 						node.AppendChild(node, ast.NewRawTextSegment(segment))
		code_span.go#L56: 			node.AppendChild(node, ast.NewRawTextSegment(segment))
		link.go#L219: 		link.AppendChild(link, c)