github.com/yuin/goldmark/ast.BaseNode.attributes (field)
13 uses
github.com/yuin/goldmark/ast (current package)
ast.go#L180: attributes []Attribute
ast.go#L388: if n.attributes == nil {
ast.go#L389: n.attributes = make([]Attribute, 0, 10)
ast.go#L391: for i, a := range n.attributes {
ast.go#L393: n.attributes[i].Name = name
ast.go#L394: n.attributes[i].Value = value
ast.go#L399: n.attributes = append(n.attributes, Attribute{name, value})
ast.go#L409: if n.attributes == nil {
ast.go#L412: for i, a := range n.attributes {
ast.go#L414: return n.attributes[i].Value, true
ast.go#L427: return n.attributes
ast.go#L432: n.attributes = nil
![]() |
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. |