-
Notifications
You must be signed in to change notification settings - Fork 63
/
index.html
81 lines (80 loc) · 2.67 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>NyaaWiki</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="NyaaCat Wiki, built with Docsify.">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!--link rel="stylesheet" href="//unpkg.zhimg.com/docsify/lib/themes/vue.css"-->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/docsify/4.13.1/themes/vue.min.css">
<link rel="stylesheet" href="assets/css/dark.css" media="(prefers-color-scheme: dark)">
<link rel="stylesheet" href="assets/css/common.css">
<meta name="theme-color" content="#339900">
</head>
<body>
<div id="app">Loading...</div>
<!-- <script src="//unpkg.zhimg.com/docsify/lib/docsify.min.js"></script> -->
<script src="//cdnjs.cloudflare.com/ajax/libs/docsify/4.13.1/docsify.min.js"></script>
<!-- <script src="//unpkg.zhimg.com/docsify-edit-on-github/index.js"></script> -->
<script src="assets/js/docsify-edit-on-github.1.0.3.min.js"></script>
<script>
window.$docsify = {
name: 'NyaaWiki',
loadNavbar: true,
loadSidebar: true,
subMaxLevel: 2,
auto2top: true,
relativePath: false,
themeColor: '#339900',
mergeNavbar: true,
formatUpdated: '{YYYY}/{MM}/{DD} {HH}:{mm}',
externalLinkTarget: '_blank',
notFoundPage: true,
search: 'auto',
search: {
maxAge: 86400000,
paths: 'auto',
placeholder: '键入开始搜索...',
noData: '未找到结果',
namespace: 'nyaawiki',
},
'flexible-alerts': {
style: 'nyaa',
note: {
label: "说明"
},
tip: {
label: "小贴士"
},
warning: {
label: "警告"
},
attention: {
label: "注意"
},
important: {
label: '重要',
icon: 'icon-important',
className: 'important'
},
typeMappings: {
info: 'note',
danger: 'attention',
caution: 'attention'
}
},
nativeEmoji: true,
plugins: [
EditOnGithubPlugin.create(
'https://github.com/NyaaCat/wiki/blob/master/'
),
]
}
</script>
<!-- <script src="//unpkg.zhimg.com/docsify/lib/plugins/emoji.min.js"></script> -->
<script src="assets/js/docsify-plugin-flexible-alerts.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/docsify/4.13.1/plugins/search.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/docsify/4.13.1/plugins/zoom-image.min.js"></script>
</body>
</html>