File: element.go

package info (click to toggle)
golang-github-yosssi-gohtml 0.0~git20180130.97fbf36-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 140 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 128 bytes parent folder | download | duplicates (4)
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)
}