-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.go
45 lines (42 loc) · 1.11 KB
/
const.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
package main
import "github.com/MakeGolangGreat/telegraph-go"
const projectLink = "https://github.com/MakeGolangGreat/MastodonArchiveBot"
var attachInfo = &telegraph.NodeElement{
Tag: "p",
Children: []telegraph.Node{
telegraph.NodeElement{
Tag: "br",
},
telegraph.NodeElement{
Tag: "blockquote",
Children: []telegraph.Node{
telegraph.NodeElement{
Tag: "strong",
Children: []telegraph.Node{"本页面由长毛象 "},
},
telegraph.NodeElement{
Tag: "a",
Attrs: map[string]string{
"href": "https://alive.bar/web/accounts/50563",
},
Children: []telegraph.Node{"@备份Bot"},
},
telegraph.NodeElement{
Tag: "strong",
Children: []telegraph.Node{" 备份,"},
},
telegraph.NodeElement{
Tag: "strong",
Children: []telegraph.Node{"代码开源:"},
},
telegraph.NodeElement{
Tag: "a",
Attrs: map[string]string{
"href": "https://github.com/MakeGolangGreat/MastodonArchiveBot",
},
Children: []telegraph.Node{"https://github.com/MakeGolangGreat/MastodonArchiveBot"},
},
},
},
},
}