1
0
Fork 0
mirror of https://github.com/imjasonh/html synced 2026-07-07 00:23:26 +00:00
html/generated_dir.go
Jason Hall 01c7432c71 Initial commit
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-01 13:08:43 -05:00

37 lines
891 B
Go

package html
// DirectoryElement represents the <dir> HTML element.
type DirectoryElement[C HTMLContent] basicElement[C]
// Dir creates a new <dir> element.
func Dir(children ...HTMLContent) *DirectoryElement[HTMLContent] {
return &DirectoryElement[HTMLContent]{
tagName: "dir",
content: children,
}
}
// Render returns the HTML string representation.
func (e *DirectoryElement[C]) Render() string {
return (*basicElement[C])(e).Render()
}
// Attr sets an arbitrary attribute as an escape hatch.
func (e *DirectoryElement[C]) Attr(key, value string) *DirectoryElement[C] {
e.attributes = append(e.attributes, Attribute{Key: key, Value: value})
return e
}
// Compact sets the compact attribute.
func (e *DirectoryElement[C]) Compact(v bool) *DirectoryElement[C] {
if v {
e.attributes = append(e.attributes, Attribute{Key: "compact", Value: "compact"})
}
return e
}