forked from SlimefunGuguProject/Slimefun-Wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.3 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
<!--使用 docsify serve 来预览内容-->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<script src="/freecdn-loader.min.js"></script>
<meta charset="UTF-8">
<title>本地预览</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://gzassets.cn/fonts/AlibabaPuHuiTi.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/lib/themes/buble.css">
<link rel="stylesheet" href="https://gzassets.cn/guizhanss/docsify/style.css">
</head>
<body>
<div id="app">加载中</div>
<script>
window.$docsify = {
name: 'Wiki Dev',
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://cdn.jsdelivr.net/npm/[email protected]/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/plugins/zoom-image.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-markdown.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/docsify-copy-code.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/docsify-plugin-toc.min.js"></script>
</body>
</html>