mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
11 lines
298 B
Go
11 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
|
||
|
}
|