File: element.go

package info (click to toggle)
golang-github-yosssi-gohtml 0.0~git20180130.97fbf36-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 132 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 128 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
package gohtml

import "bytes"

// An element represents an HTML element.
type element interface {
	write(*bytes.Buffer, int)
}