Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var KindFootnote = gast.NewNodeKind("Footnote")
KindFootnote is a NodeKind of the Footnote node.
View Source
var KindFootnoteLink = gast.NewNodeKind("FootnoteLink")
KindFootnoteLink is a NodeKind of the FootnoteLink node.
View Source
var KindFootnoteList = gast.NewNodeKind("FootnoteList")
KindFootnoteList is a NodeKind of the FootnoteList node.
Functions ¶
This section is empty.
Types ¶
type Footnote ¶
A Footnote struct represents a footnote of Markdown (PHP Markdown Extra) text.
type FootnoteLink ¶
type FootnoteLink struct { gast.BaseInline Index int }
A FootnoteLink struct represents a link to a footnote of Markdown (PHP Markdown Extra) text.
func NewFootnoteLink ¶
func NewFootnoteLink(index int) *FootnoteLink
NewFootnoteLink returns a new FootnoteLink node.
func (*FootnoteLink) Dump ¶
func (n *FootnoteLink) Dump(source []byte, level int)
Dump implements Node.Dump.
type FootnoteList ¶
A FootnoteList struct represents footnotes of Markdown (PHP Markdown Extra) text.
func NewFootnoteList ¶
func NewFootnoteList() *FootnoteList
NewFootnoteList returns a new FootnoteList node.
func (*FootnoteList) Dump ¶
func (n *FootnoteList) Dump(source []byte, level int)
Dump implements Node.Dump.
Click to show internal directories.
Click to hide internal directories.