all repos — gomponents @ 5da578cfdf717ff1465f729194c8192a00412881

HTML components in pure Go

el/inline.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package el

import (
	g "github.com/maragudk/gomponents"
)

func Span(children ...g.Node) g.NodeFunc {
	return g.El("span", children...)
}

func A(href string, children ...g.Node) g.NodeFunc {
	return g.El("a", prepend(g.Attr("href", href), children)...)
}

func B(text string, children ...g.Node) g.NodeFunc {
	return g.El("b", prepend(g.Text(text), children)...)
}

func Strong(text string, children ...g.Node) g.NodeFunc {
	return g.El("strong", prepend(g.Text(text), children)...)
}

func I(text string, children ...g.Node) g.NodeFunc {
	return g.El("i", prepend(g.Text(text), children)...)
}

func Em(text string, children ...g.Node) g.NodeFunc {
	return g.El("em", prepend(g.Text(text), children)...)
}