Source File
strikethrough.go
Belonging Package
github.com/yuin/goldmark/extension/ast
// Package ast defines AST nodes that represents extension's elementspackage astimport (gast)// A Strikethrough struct represents a strikethrough of GFM text.type Strikethrough struct {gast.BaseInline}// Dump implements Node.Dump.func ( *Strikethrough) ( []byte, int) {gast.DumpHelper(, , , nil, nil)}// KindStrikethrough is a NodeKind of the Strikethrough node.var KindStrikethrough = gast.NewNodeKind("Strikethrough")// Kind implements Node.Kind.func ( *Strikethrough) () gast.NodeKind {return KindStrikethrough}// NewStrikethrough returns a new Strikethrough node.func () *Strikethrough {return &Strikethrough{}}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |