diff options
Diffstat (limited to 'html/elements.go')
-rw-r--r-- | html/elements.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/html/elements.go b/html/elements.go index f676462..32752ea 100644 --- a/html/elements.go +++ b/html/elements.go @@ -73,6 +73,11 @@ func Cite(children ...g.Node) g.Node { return g.El("cite", children...) } +// Deprecated: Use [Cite] instead. +func CiteEl(children ...g.Node) g.Node { + return Cite(children...) +} + func Code(children ...g.Node) g.Node { return g.El("code", children...) } |