From 0f04094533e06adbcc14170c6b7fcd19c6ae9d03 Mon Sep 17 00:00:00 2001 From: maddalax Date: Fri, 27 Sep 2024 15:57:11 -0500 Subject: [PATCH] add a few missing tags --- framework/h/tag.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/framework/h/tag.go b/framework/h/tag.go index 0bb2b23..9e62bb3 100644 --- a/framework/h/tag.go +++ b/framework/h/tag.go @@ -467,3 +467,11 @@ func TFoot(children ...Ren) *Element { func Abbr(children ...Ren) *Element { return Tag("abbr", children...) } + +func Title(children ...Ren) *Element { + return Tag("title", children...) +} + +func Br() *Element { + return Tag("br") +}