1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 13:29:11 +01:00

Add sigs.k8s.io/mdtoc dependency

This commit is contained in:
Mike Dame
2021-03-08 10:46:27 -05:00
parent 6b8d4cd5a7
commit 131ed42a4c
69 changed files with 12877 additions and 29 deletions

10
vendor/github.com/gomarkdown/markdown/ast/attribute.go generated vendored Normal file
View File

@@ -0,0 +1,10 @@
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
}