ingress-nginx-helm/vendor/github.com/mmarkdown/mmark/mast/bibliography.go
Manuel Alejandro de Brito Fontes 36959a4878
Add go dependencies for mdtoc
2019-07-24 21:08:08 -04:00

23 lines
433 B
Go

package mast
import (
"github.com/gomarkdown/markdown/ast"
"github.com/mmarkdown/mmark/mast/reference"
)
// Bibliography represents markdown bibliography node.
type Bibliography struct {
ast.Container
Type ast.CitationTypes
}
// BibliographyItem contains a single bibliography item.
type BibliographyItem struct {
ast.Leaf
Anchor []byte
Type ast.CitationTypes
Reference *reference.Reference // parsed reference XML
}