1
Fork 0
goldmark-mark/ast/mark.go

30 lines
583 B
Go
Raw Normal View History

2021-05-22 16:14:10 +00:00
// Package ast defines AST nodes that represents extension's elements
package ast
import (
gast "github.com/yuin/goldmark/ast"
)
2021-05-22 16:25:20 +00:00
// A Mark struct represents a mark.
2021-05-22 16:14:10 +00:00
type Mark struct {
gast.BaseInline
}
// Dump implements Node.Dump.
func (n *Mark) Dump(source []byte, level int) {
gast.DumpHelper(n, source, level, nil, nil)
}
2021-05-22 16:25:20 +00:00
// KindMark is a NodeKind of the Mark node.
2021-05-22 16:14:10 +00:00
var KindMark = gast.NewNodeKind("Mark")
// Kind implements Node.Kind.
func (n *Mark) Kind() gast.NodeKind {
return KindMark
}
2021-05-22 16:25:20 +00:00
// NewMark returns a new Mark node.
2021-05-22 16:14:10 +00:00
func NewMark() *Mark {
return &Mark{}
}