-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
63 lines (63 loc) · 2.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>青玉阁</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify@4/themes/vue.css"
/>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
// 配置仓库地址,在页面右上角渲染一个GitHub Corner挂件。
repo: "https://github.com/YuLawrence",
// 配置最大支持渲染的标题层级
maxLevel: 4,
// 加载自定义导航栏
loadNavbar: true,
name: "青玉阁",
// 封面
coverpage: true,
loadNavbar: true,
// logo: "/_media/favicon.ico",
// 启用相对路径
relativePath: true,
// 只在访问主页时加载封面
onlyCover: false,
// 全局搜索
search: {
paths: "auto",
placeholder: "请输入要搜索的关键字",
noData: "没有结果",
depth: 6,
},
// 分页导航,在文档的最下方会展示上一个文档和下一个文档。
pagination: {
previousText: "上一章节",
nextText: "下一章节",
},
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- 分页 -->
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!-- 全文搜索 -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- Click to copy -->
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
<!-- 图片缩放 -->
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>
<!-- 字数统计 -->
<script src="//unpkg.com/docsify-count/dist/countable.js"></script>
</body>
</html>