mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 13:29:11 +01:00
24 lines
433 B
Go
24 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
|
|
}
|