-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
82 lines (77 loc) · 2.56 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Doc - APG</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link href="https://cdn.bootcss.com/docsify/4.9.4/themes/vue.css" rel="stylesheet">
<link rel="stylesheet" href="docs/lib/docsify-gifcontrol.css">
</head>
<body>
<nav>
<a href="#/">HOME</a>
<a href="#Quick-start.md">快速开始</a>
<a href="#config-js-Format.md">游戏配置文件</a>
<a href="#block-map.md">地图元素映射表</a>
</nav>
<div id="app">AC 祈祷中...</div>
<script>
window.location.href="docs";
window.$docsify = {
// homepage: '',
coverpage: 'docs/_coverpage.md',
loadSidebar: 'docs/_sidebar.md',
loadNavbar: 'docs/_navbar.md',
// basePath: 'docs',
search: 'auto',
subMaxLevel: 5,
name: 'APG',
repo: 'SuCicada/Algorithm-PlayGround',
// el: '#wait',
// auto2top: true,
search: {
placeholder: {
'/zh-cn/': '搜索',
'/': 'Type to search'
},
noData: {
'/zh-cn/': '找不到结果',
'/': 'No Results'
},
// Headline depth, 1 - 6
depth: 6,
hideOtherSidebarContent: true, // whether or not to hide other sidebar content
}
};
// const gitalk = new Gitalk({
// clientID: 'SuCicada',
// clientSecret: 'SuCicada',
// repo: 'SuCicada/Algorithm-PlayGround',
// owner: 'SuCicada',
// admin: ['SuCicada'],
// // facebook-like distraction free mode
// distractionFreeMode: false
// });
// gitalk.render('gitalk-container')
</script>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'Algorithm-PlayGround/community'
};
</script>
<!-- <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>-->
<script src="https://cdn.bootcss.com/docsify/4.9.4/docsify.min.js"></script>
<!--搜索-->
<!-- <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>-->
<script src="https://cdn.bootcss.com/docsify/4.9.4/plugins/search.min.js"></script>
<script src="docs/lib/docsify-copy-code"></script>
<!--分页-->
<script src="docs/lib/docsify-pagination.min.js"></script>
<!--gif-->
<script src="docs/lib/docsify-gifcontrol.js"></script>
<!-- chat -->
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
</body>
</html>