Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func New ¶
New Creates a new tfoot element with optional child nodes. Example: tfoot.New() Renders: <tfoot></tfoot>
func RawText ¶
func RawText(content string) *element
RawText Creates a new tfoot element with raw text content as unescaped HTML. Example: tfoot.RawText("<strong>Table</strong> footer") Renders: <tfoot><strong>Table</strong> footer</tfoot>
func RawTextf ¶
RawTextf Creates a new tfoot element with formatted raw text content as unescaped HTML using text.RawTextf. Example: tfoot.RawTextf("<strong>%s</strong> footer", "Table") Renders: <tfoot><strong>Table</strong> footer</tfoot>
func Static ¶
func Static(content string) *element
Static Creates a new tfoot element with static text content. Example: tfoot.Static("Hello World") Renders: <tfoot>Hello World</tfoot>