-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
94 lines (94 loc) · 3.51 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
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GIA Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Document for Genshin Impact Assistant">
<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/lib/themes/vue.css"> -->
<!-- Themes (light + dark) -->
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="stylesheet" media="(prefers-color-scheme: light)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<!-- Code Style -->
<!-- <link rel="stylesheet" href="https://unpkg.com/prismjs@1/themes/prism.css""> -->
<!-- Banner Style -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-top-banner-plugin@latest/dist/style.css"> -->
<!-- Custom Styles -->
<style>
:root {
--link-color : #0b87da;
--link-text-decoration-color : #0b87da;
}
code:not([class*=lang-]):not([class*=language-]) {
white-space: pre-wrap !important;
word-wrap: break-word !important;
/* word-break: break-all !important; */
}
blockquote {
/* white-space: pre-wrap !important; */
word-wrap: break-word !important;
/* word-break: break-all !important; */
}
/* #TOPBANNER {
padding: 5px 5px;
} */
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'GIA Document',
repo: 'https://github.com/infstellar/genshin_impact_assistant',
homepage: "/zh_CN/README.md",
alias: {
'^/([^/]+)$': '/zh_CN/$1'
},
loadSidebar: true,
subMaxLevel: 2,
loadNavbar: true,
auto2top: true,
autoHeader: true,
relativePath: true,
nameLink: {
'/zh_CN/': '#/zh_CN/',
'/en_US/': '#/en_US/',
'/': '#/',
'/base/': '#/base/'
},
search: {
paths:'auto',
placeholder: {
'/zh_CN/': '搜索',
'/en_US/': 'Type to search',
'/': '搜索',
'/base/': '搜索'
},
noData: {
'/zh_CN/': '找不到结果',
'/en_US/': 'No Results',
'/': '找不到结果',
'/base/': '找不到结果'
},
pathNamespaces: ['/zh_CN', '/en_US'],
}
// ,
// topBanner: {
// content : "⚠️**临时通知**:pip清华源没更新,如果启动时报错请换成阿里源。<u>[**详见此处**](https://genshinimpactassistant.github.io/GIA-Document/#/zh_CN/install)</u>",
// position: "relative",
// zIndex: -1,
// }
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code@2"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-python.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-pangu/lib/pangu.min.js"></script>
<!-- <script src="//cdn.jsdelivr.net/npm/docsify-top-banner-plugin@latest/dist/index.js"></script> -->
</body>
</html>