Documentation
¶
Overview ¶
Package table provides constructors and methods for the HTML <table> element.
The <table>: The Table element represents tabular data -that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( TagOpen = []byte("<table") TagClose = []byte("</table>") AttrBorder = []byte(" border=\"") AttrCellPadding = []byte(" cellpadding=\"") AttrCellSpacing = []byte(" cellspacing=\"") AttrFrame = []byte(" frame=\"") AttrRules = []byte(" rules=\"") AttrSummary = []byte(" summary=\"") AttrWidth = []byte(" width=\"") )
Byte constants for HTML rendering.
Functions ¶
func New ¶
New creates a new table element with optional child nodes (typically thead, tbody, tfoot, tr elements). Example: table.New() Renders: <table></table>
Types ¶
Click to show internal directories.
Click to hide internal directories.