type github.com/yuin/goldmark/ast.Link

14 uses

	github.com/yuin/goldmark/ast (current package)
		inline.go#L375: type Link struct {
		inline.go#L380: func (n *Link) Dump(source []byte, level int) {
		inline.go#L391: func (n *Link) Kind() NodeKind {
		inline.go#L396: func NewLink() *Link {
		inline.go#L397: 	c := &Link{
		inline.go#L427: func NewImage(link *Link) *Image {

	github.com/yuin/goldmark/parser
		link.go#L150: 	var link *ast.Link
		link.go#L191: 		if _, ok := c.(*ast.Link); ok {
		link.go#L209: func (s *linkParser) processLinkLabel(parent ast.Node, link *ast.Link, last *linkLabelState, pc Context) {
		link.go#L224: func (s *linkParser) parseReferenceLink(parent ast.Node, last *linkLabelState, block text.Reader, pc Context) (*ast.Link, bool) {
		link.go#L253: func (s *linkParser) parseLink(parent ast.Node, last *linkLabelState, block text.Reader, pc Context) *ast.Link {

	github.com/yuin/goldmark/renderer/html
		html.go#L518: 	n := node.(*ast.Link)

	golang.org/x/pkgsite/internal/frontend
		goldmark.go#L46: 		case *ast.Link:
		goldmark.go#L254: 				if l, ok := tb.FirstChild().(*ast.Link); ok && l.NextSibling() == nil {