Source File
footnote.go
Belonging Package
github.com/yuin/goldmark/extension/ast
package ast
import (
gast
)
type FootnoteLink struct {
gast.BaseInline
Index int
RefCount int
}
var KindFootnoteLink = gast.NewNodeKind("FootnoteLink")
func ( *FootnoteLink) () gast.NodeKind {
return KindFootnoteLink
}
func ( int) *FootnoteLink {
return &FootnoteLink{
Index: ,
RefCount: 0,
}
}
type FootnoteBacklink struct {
gast.BaseInline
Index int
RefCount int
}
var KindFootnoteBacklink = gast.NewNodeKind("FootnoteBacklink")
func ( *FootnoteBacklink) () gast.NodeKind {
return KindFootnoteBacklink
}
func ( int) *FootnoteBacklink {
return &FootnoteBacklink{
Index: ,
RefCount: 0,
}
}
var KindFootnote = gast.NewNodeKind("Footnote")
func ( *Footnote) () gast.NodeKind {
return KindFootnote
}
type FootnoteList struct {
gast.BaseBlock
Count int
}
var KindFootnoteList = gast.NewNodeKind("FootnoteList")
func ( *FootnoteList) () gast.NodeKind {
return KindFootnoteList
}
func () *FootnoteList {
return &FootnoteList{
Count: 0,
}
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |