-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>知识分享库</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="一个基于docsify的知识分享库">
<meta name="keyword" content="知识,分享,docsify,thcpdd,docs,知识库,知识分享库,knowledge,sharing">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="shortcut icon" href="/logo.svg" type="image/x-icon">
<link rel="stylesheet" href="/static/css/vue.css">
</head>
<body>
<div id="app">稍等一下,我马上就好了……</div>
<script src="/static/js/config.js"></script>
<!-- Docsify v4 -->
<script src="/static/js/docsify.min.js"></script>
<!-- 分页插件 -->
<script src="/static/js/docsify-pagination.min.js"></script>
<!-- Python 语法高亮插件 -->
<script src="/static/js/prism-python.min.js"></script>
<!-- Bash 语法高亮插件 -->
<script src="/static/js/prism-bash.min.js"></script>
<!-- 代码复制插件 -->
<script src="/static/js/docsify-copy-code.min.js"></script>
<!-- 字数统计插件 -->
<script src="/static/js/countable.min.js"></script>
<!-- 文本高亮插件 -->
<script src="/static/js/docsify-plugin-flexible-alerts.min.js"></script>
<!-- 图片缩放插件 -->
<script src="/static/js/zoom-image.min.js"></script>
<!-- 图片懒加载插件 -->
<script src="/static/js/lazy-image.js"></script>
</body>
<style>
/* 代码块颜色 */
.markdown-section code {
color: #0092ff;
}
/* 代码关键字颜色 */
.token.keyword {
color: #c453fe;
}
/* 代码函数名颜色 */
.token.function {
color: #562bf1
}
</style>
</html>