Versions in this module Expand all Collapse all v1 v1.5.6 May 3, 2023 v1.5.5 May 3, 2023 Changes in this version + var KindDefinitionDescription = gast.NewNodeKind("DefinitionDescription") + var KindDefinitionList = gast.NewNodeKind("DefinitionList") + var KindDefinitionTerm = gast.NewNodeKind("DefinitionTerm") + var KindFootnote = gast.NewNodeKind("Footnote") + var KindFootnoteBacklink = gast.NewNodeKind("FootnoteBacklink") + var KindFootnoteLink = gast.NewNodeKind("FootnoteLink") + var KindFootnoteList = gast.NewNodeKind("FootnoteList") + var KindStrikethrough = gast.NewNodeKind("Strikethrough") + var KindTable = gast.NewNodeKind("Table") + var KindTableCell = gast.NewNodeKind("TableCell") + var KindTableHeader = gast.NewNodeKind("TableHeader") + var KindTableRow = gast.NewNodeKind("TableRow") + var KindTaskCheckBox = gast.NewNodeKind("TaskCheckBox") + type Alignment int + const AlignCenter + const AlignLeft + const AlignNone + const AlignRight + func (a Alignment) String() string + type DefinitionDescription struct + IsTight bool + func NewDefinitionDescription() *DefinitionDescription + func (n *DefinitionDescription) Dump(source []byte, level int) + func (n *DefinitionDescription) Kind() gast.NodeKind + type DefinitionList struct + Offset int + TemporaryParagraph *gast.Paragraph + func NewDefinitionList(offset int, para *gast.Paragraph) *DefinitionList + func (n *DefinitionList) Dump(source []byte, level int) + func (n *DefinitionList) Kind() gast.NodeKind + type DefinitionTerm struct + func NewDefinitionTerm() *DefinitionTerm + func (n *DefinitionTerm) Dump(source []byte, level int) + func (n *DefinitionTerm) Kind() gast.NodeKind + type Footnote struct + Index int + Ref []byte + func NewFootnote(ref []byte) *Footnote + func (n *Footnote) Dump(source []byte, level int) + func (n *Footnote) Kind() gast.NodeKind + type FootnoteBacklink struct + Index int + RefCount int + RefIndex int + func NewFootnoteBacklink(index int) *FootnoteBacklink + func (n *FootnoteBacklink) Dump(source []byte, level int) + func (n *FootnoteBacklink) Kind() gast.NodeKind + type FootnoteLink struct + Index int + RefCount int + RefIndex int + func NewFootnoteLink(index int) *FootnoteLink + func (n *FootnoteLink) Dump(source []byte, level int) + func (n *FootnoteLink) Kind() gast.NodeKind + type FootnoteList struct + Count int + func NewFootnoteList() *FootnoteList + func (n *FootnoteList) Dump(source []byte, level int) + func (n *FootnoteList) Kind() gast.NodeKind + type Strikethrough struct + func NewStrikethrough() *Strikethrough + func (n *Strikethrough) Dump(source []byte, level int) + func (n *Strikethrough) Kind() gast.NodeKind + type Table struct + Alignments []Alignment + func NewTable() *Table + func (n *Table) Dump(source []byte, level int) + func (n *Table) Kind() gast.NodeKind + type TableCell struct + Alignment Alignment + func NewTableCell() *TableCell + func (n *TableCell) Dump(source []byte, level int) + func (n *TableCell) Kind() gast.NodeKind + type TableHeader struct + Alignments []Alignment + func NewTableHeader(row *TableRow) *TableHeader + func (n *TableHeader) Dump(source []byte, level int) + func (n *TableHeader) Kind() gast.NodeKind + type TableRow struct + Alignments []Alignment + func NewTableRow(alignments []Alignment) *TableRow + func (n *TableRow) Dump(source []byte, level int) + func (n *TableRow) Kind() gast.NodeKind + type TaskCheckBox struct + IsChecked bool + func NewTaskCheckBox(checked bool) *TaskCheckBox + func (n *TaskCheckBox) Dump(source []byte, level int) + func (n *TaskCheckBox) Kind() gast.NodeKind