forked from SlimefunGuguProject/Slimefun-Wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 2.71 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
<!--安装 docsify-cli 后,使用 docsify serve 来预览内容-->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>粘液科技中文Wiki - 本地开发预览</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="非官方中文 Wiki">
<meta name="author" content="ybw0014">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans+SC">
<link rel="stylesheet" href="https://unpkg.gzassets.cn/[email protected]/lib/themes/buble.css">
<style>
body {
font-family: 'Noto Sans SC', 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
font-weight: normal;
}
summary {
cursor: pointer;
}
</style>
</head>
<body>
<div id="app">加载中</div>
<script>
window.$docsify = {
name: '粘液科技 中文Wiki (本地)',
basePath: '/pages/',
homepage: 'Home.md',
auto2top: true,
loadSidebar: true,
autoHeader: true,
notFoundPage: true,
search: {
placeholder: '搜索',
noData: '没有结果',
hideOtherSidebarContent: true,
},
copyCode: {
buttonText: '复制到剪贴板',
errorText: '复制出错',
successText: '已复制'
},
toc: {
tocMaxLevel: 4,
target: 'h1, h2, h3, h4, h5, h6'
},
plugins: [
function (hook, vm) {
hook.beforeEach(function (html) {
return (
html +
'\n\n----\n\n' +
'由 [docsify](https://docsify.js.org) 提供强力驱动'
);
});
},
],
}
</script>
<!-- Docsify v4 -->
<script src="https://unpkg.gzassets.cn/[email protected]/lib/docsify.min.js"></script>
<script src="https://unpkg.gzassets.cn/[email protected]/lib/plugins/zoom-image.min.js"></script>
<script src="https://unpkg.gzassets.cn/[email protected]/lib/plugins/search.min.js"></script>
<script src="https://unpkg.gzassets.cn/[email protected]/index.min.js"></script>
<script src="https://unpkg.gzassets.cn/prismjs@1/components/prism-yaml.min.js"></script>
<script src="https://unpkg.gzassets.cn/prismjs@1/components/prism-markdown.min.js"></script>
<script src="https://unpkg.gzassets.cn/prismjs@1/components/prism-java.min.js"></script>
<script src="https://unpkg.gzassets.cn/prismjs@1/components/prism-bash.min.js"></script>
<script src="https://unpkg.gzassets.cn/[email protected]/dist/docsify-copy-code.min.js"></script>
<script src="https://unpkg.gzassets.cn/[email protected]/dist/docsify-plugin-toc.min.js"></script>
</body>
</html>