-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
121 lines (120 loc) · 3.7 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
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>FMCS HELP</title>
<link
rel="icon"
type="image/x-icon"
href="https://freemcserver.net/img/logo.png"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="keywords"
content="fmcs,fmcshelp,freemcserver,minceraft,server,docs,support"
/>
<!--- <meta name="description" content="FMCS HELP FAQ" /> --->
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link
rel="stylesheet"
href="//unpkg.com/docsify/lib/themes/vue.css"
title="vue"
/>
<style>
nav.app-nav li ul {
min-width: 100px;
}
</style>
</head>
<body>
<div id="app">Loading ...</div>
<script>
window.$docsify = {
alias: {
//"/.*/README.md": 'https://raw.githubusercontent.com/soyabn9/fmcs-help/master/README.md',
'.*?/_coverpage.md': 'https://raw.githubusercontent.com/soyabn9/fmcs-help/master/_coverpage.md',
//'/markdown': '/markdown.md',
//"/.*/_sidebar.md": '/_sidebar.md',
".*?/_navbar.md": "https://raw.githubusercontent.com/soyabn9/fmcs-help/master/_navbar.md",
//"/en/(.*)": "https://raw.githubusercontent.com/soyabn9/fmcs-help/master/en/$1"
},
auto2top: true,
coverpage: true,
onlyCover: true,
executeScript: true,
loadSidebar: true,
loadNavbar: true,
mergeNavbar: false,
maxLevel: 4,
subMaxLevel: 2,
//logo: 'https://freemcserver.net/img/logo.png',
name: "FMCS HELP",
//themeColor: '#65FF00',
search: {
noData: {
"/en/": "No Results!",
"/": "No Results!"
},
paths: "auto",
placeholder: {
"/en/": "Search",
"/": "Search"
}
},
"flexible-alerts": {
note: {
label: {
"/en/": "Info",
"/": "Info"
}
},
tip: {
label: {
"/en/": "Success",
"/": "Success"
}
},
warning: {
label: {
"/en/": "Warning",
"/": "Warning"
}
},
danger: {
label: {
"/en/": "Danger",
"/": "Danger"
}
}
},
notFoundPage: {
"/en/": true,
"/": true
},
formatUpdated: "{HH}:{mm}:{ss} {DD}/{MM}/{YYYY}",
plugins: [
function(hook, vm) {
hook.beforeEach(function(html) {
var url = 'https://github.com/soyabn9/fmcs-help/edit/master/' + vm.route.file;
var editHtml = "[:memo: Edit Document](" + url + ")\n";
return (
editHtml + html + "\n----\n" + "Last Modified: {docsify-updated} "
);
});
}
]
};
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="//unpkg.com/docsify-plugin-flexible-alerts"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify-copy-code"></script>
</body>
</html>