Documentation
¶
Overview ¶
package DOM
provides an abstraction to the Document Object Model to enable programmatic definitions of the document object model using golang
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Class ¶
type Class struct {
// contains filtered or unexported fields
}
type Element ¶
type Element struct {
Ns []Node
// contains filtered or unexported fields
}
func NewElement ¶
type HTMLPropser ¶
type HTMLPropser interface {
HTMLProps() Props
}
type Node ¶
type Node interface {
Tager // Tager provides open and close tags for the node
HTMLPropser // HTMLPropser provides the html properties for the node
Nodes() []Node // Nodes returns child nodes for the node
IsNil() bool
}
Click to show internal directories.
Click to hide internal directories.