Add go dependencies for mdtoc
This commit is contained in:
parent
cb33c4ed26
commit
36959a4878
63 changed files with 12675 additions and 0 deletions
23
vendor/github.com/mmarkdown/mmark/mast/bibliography.go
generated
vendored
Normal file
23
vendor/github.com/mmarkdown/mmark/mast/bibliography.go
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue