Files
hotgo/server/internal/library/hggen/views/gohtml/element.go

8 lines
138 B
Go

package gohtml
// An element represents an HTML element.
type element interface {
isInline() bool
write(*formattedBuffer, bool) bool
}