ingress-nginx-helm/vendor/github.com/gomarkdown/markdown/ast/attribute.go
Manuel Alejandro de Brito Fontes 36959a4878
Add go dependencies for mdtoc
2019-07-24 21:08:08 -04:00

10 lines
298 B
Go

package ast
// An attribute can be attached to block elements. They are specified as
// {#id .classs key="value"} where quotes for values are mandatory, multiple
// key/value pairs are separated by whitespace.
type Attribute struct {
ID []byte
Classes [][]byte
Attrs map[string][]byte
}