mirror of
https://git.seedno.de/seednode/roulette.git
synced 2025-02-14 09:17:08 +00:00
7 lines
138 B
Go
7 lines
138 B
Go
package gohtml
|
|
|
|
// An element represents an HTML element.
|
|
type element interface {
|
|
isInline() bool
|
|
write(*formattedBuffer, bool) bool
|
|
}
|