forked from KittenBot/meowbit-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (101 loc) · 4.04 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>喵bit使用文档</title>
<link rel="icon" href="image/logo.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="image" content="https://s2.ax1x.com/2019/09/27/uMZLUf.png">
<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="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css"> -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-defaults.css"> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="stylesheet" href="lib/coolStyle.css">
<!-- <link rel="stylesheet" href="//unpkg.com/docsify-gifcontrol/dist/docsify-gifcontrol.css"> -->
<script src="https://cdn.jsdelivr.net/npm/docsify-example-panels"></script>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
loadSidebar: true,
loadNavbar: true,
autoHeader: true,
auto2top: true,
mergeNavbar: true,
notFoundPage: true,
coverpage: true,
coverpage:['/', '/en/'],
executeScript: true,
subMaxLevel: 1,
homepage: 'more/intro.md',
repo: '',
executeScript: true,
name: 'Meowbit',
// logo: 'image/meow.png',
nameLink: '' ,
search: '', // default
search : [
'/', // => /README.md
'/guide', // => /guide.md
'/get-started', // => /get-started.md
'/zh-cn/' // => /zh-cn/README.md
],
// complete configuration parameters
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: '/', // or 'auto'
placeholder: '搜索',
// Localization
placeholder: {
'/zh-cn/': '搜索',
'/': '搜索'
},
noData: '找不到结果',
// Localization
noData: {
'/zh-cn/': '找不到结果',
'/': '找不到结果'
},
// Headline depth, 1 - 6
depth: 1,
hideOtherSidebarContent: true, // whether or not to hide other sidebar content
// To avoid search index collision
// between multiple websites under the same domain
namespace: 'website-1',
},
themeable: {
readyTransition : true, // default
responsiveTables: true // default
},
copyCode: {
buttonText : '点击复制',
errorText : 'Error',
successText: '成功 '
},
formatUpdated: '{stamp}',
formatUpdated: function(time) {
return time;
}
}
// const tinydate = require('tinydate');
// const stamp = tinydate('[{MM}/{DD} {HH}:{mm}:{ss}]');
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.js"></script>
<!-- <script src="https://unpkg.com/docsify-themeable"></script> -->
<script src="https://unpkg.com/docsify-tabs"></script>
<script src="https://unpkg.com/docsify/lib/plugins/ga.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.js"></script>
<script src="//unpkg.com/docsify-copy-code"></script>
<script src="//unpkg.com/docsify/lib/plugins/external-script.js"></script>
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<!-- tips and warning style -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/css-doodle/0.5.1/css-doodle.min.js"></script> -->
<!-- <script src="//unpkg.com/docsify-gifcontrol/dist/docsify-gifcontrol.js"></script> -->
</body>
</html>