-
Notifications
You must be signed in to change notification settings - Fork 1
/
site_config.json
89 lines (89 loc) · 2.16 KB
/
site_config.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"site_name": "mysite",
"site_slogon": "",
"site_root_url": "/",
"site_domain": "my_name.github.io",
"site_protocol": "https",
"config_template_dir": "config",
"source": "https://github.com/my_name/my_name.github.io/blob/main",
"route": {
"docs": {
"/get_started/zh/": "docs/get_started/zh"
},
"pages": {
"/": "pages/index/zh"
},
"assets": {
"/static/": "static",
"/get_started/assets/": "docs/get_started/assets"
},
"blog": {
"/blog/": "blog"
}
},
"translate": {
"docs": {
"/get_started/zh/": [
{
"url": "/get_started/en/",
"src": "docs/get_started/en"
}
]
},
"pages": {
"/": [
{
"url": "/en/",
"src": "pages/index/en"
}
]
}
},
"plugins": {
"teedoc-plugin-markdown-parser":{
"from": "pypi",
"config": {
}
},
"teedoc-plugin-theme-default":{
"from": "pypi",
"config": {
"dark": true,
"env":{
"main_color": "#4caf7d"
}
}
},
"teedoc-plugin-search":{
"from": "pypi",
"config": {
"search_hint": "Search"
}
},
"teedoc-plugin-blog": {
"from": "pypi",
"config": {
}
},
"teedoc-plugin-assets": {
"from": "pypi",
"config": {
"header_items": [
"/static/css/custom.css"
],
"footer_items": [
"/static/js/custom.js"
],
"env":{
"main_color": "#4caf7d",
"second_color": "#0a7d43"
}
}
}
},
"rebuild_changes_delay": 1,
"robots":{
"User-agent": "*"
},
"layout_root_dir": "layout"
}