-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 3.16 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
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</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-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme"
type="text/css"
/>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: "ACross",
nameLink: "/",
repo: "https://github.com/ArkToria/ACross",
loadSidebar: true,
alias: {
"/*/_sidebar.md": "/_sidebar.md",
},
loadNavbar: true,
subMaxLevel: 4,
coverpage: {
"/": "_coverpage.md",
"/zh_cn/": "_coverpage.md",
},
search: {
paths: "auto",
placeholder: {
"/zh-cn/": "搜索",
"/": "Type to search",
},
noData: {
"/zh-cn/": "找不到结果",
"/": "No Results",
},
depth: 3,
hideOtherSidebarContent: true,
pathNamespaces: ["/zh-cn"],
},
darklightTheme: {
defaultTheme : 'dark',
bodyFontSize : '1.2em',
dark: {
accent : '#42B983',
toogleBackground : '#ECEFF4',
background: "#2E3440",
textColor: "#ECEFF4",
codeTextColor: "ECEFF4",
highlightColor: "#42B983",
codeBackgroundColor: "#3B4252",
coverBackground : '#2E3440',
},
light: {
highlightColor: '#E96900'
}
}
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<!-- Plugins -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script type="module" src="/index.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!-- Highlighter -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-powershell.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-cmake.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-git.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-systemd.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-protobuf.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-qml.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js">
</script>
</body>
</html>