-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.go
59 lines (43 loc) · 814 Bytes
/
meta.go
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package react
func Meta(name, content string, props Props) *Element {
p := Props{}
if props != nil {
p = props
}
if name != "" {
p["name"] = name
}
if content != "" {
p["content"] = content
}
return CreateElement("meta", p)
}
func MetaItemProp(name, content string, props Props) *Element {
p := Props{}
if props != nil {
p = props
}
if name != "" {
p["itemprop"] = name
}
return Meta("", content, p)
}
func MetaProperty(name, content string, props Props) *Element {
p := Props{}
if props != nil {
p = props
}
if name != "" {
p["property"] = name
}
return Meta("", content, p)
}
func MetaCharset(charset ...string) *Element {
cset := "UTF-8"
if len(charset) > 0 {
if charset[0] != "" {
cset = charset[0]
}
}
return Meta("", "", Props{"charset": cset})
}