Source File
definition_list.go
Belonging Package
github.com/yuin/goldmark/extension/ast
package ast
import (
gast
)
type DefinitionList struct {
gast.BaseBlock
Offset int
TemporaryParagraph *gast.Paragraph
}
func ( *DefinitionList) ( []byte, int) {
gast.DumpHelper(, , , nil, nil)
}
var KindDefinitionList = gast.NewNodeKind("DefinitionList")
func ( *DefinitionList) () gast.NodeKind {
return KindDefinitionList
}
func ( int, *gast.Paragraph) *DefinitionList {
return &DefinitionList{
Offset: ,
TemporaryParagraph: ,
}
}
type DefinitionTerm struct {
gast.BaseBlock
}
func ( *DefinitionTerm) ( []byte, int) {
gast.DumpHelper(, , , nil, nil)
}
var KindDefinitionTerm = gast.NewNodeKind("DefinitionTerm")
func ( *DefinitionTerm) () gast.NodeKind {
return KindDefinitionTerm
}
func () *DefinitionTerm {
return &DefinitionTerm{}
}
type DefinitionDescription struct {
gast.BaseBlock
IsTight bool
}
func ( *DefinitionDescription) ( []byte, int) {
gast.DumpHelper(, , , nil, nil)
}
var KindDefinitionDescription = gast.NewNodeKind("DefinitionDescription")
func ( *DefinitionDescription) () gast.NodeKind {
return KindDefinitionDescription
}
func () *DefinitionDescription {
return &DefinitionDescription{}
![]() |
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. |