about summary refs log tree commit diff stats
path: root/el/content.go
diff options
context:
space:
mode:
Diffstat (limited to 'el/content.go')
-rw-r--r--el/content.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/el/content.go b/el/content.go
index 5a4bce9..a4bcd61 100644
--- a/el/content.go
+++ b/el/content.go
@@ -23,3 +23,11 @@ func Li(children ...g.Node) g.NodeFunc {
 func P(children ...g.Node) g.NodeFunc {
 	return g.El("p", children...)
 }
+
+func Br(children ...g.Node) g.NodeFunc {
+	return g.El("br", children...)
+}
+
+func Hr(children ...g.Node) g.NodeFunc {
+	return g.El("hr", children...)
+}