-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (95 loc) · 3.36 KB
/
index.html
File metadata and controls
100 lines (95 loc) · 3.36 KB
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
<!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, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="https://docs.ppy.sh/images/logo.png">
<!-- Theme: Simple Dark -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<style>
.cover .mask {
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-image: url(https://66.media.tumblr.com/ae90a490ba260713d9204a86350b2e37/tumblr_p22l00OAt51tleiqgo2_1280.jpg);
background-size: cover;
filter: blur(5px);
-webkit-filter: blur(5px);
visibility: inherit;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'API Documentation',
repo: 'https://github.com/deissh/rl',
loadSidebar: true,
coverpage: true,
loadNavbar: true,
autoHeader: true,
formatUpdated: '{DD}/{MM} {HH}:{mm}',
noCompileLinks: [
'/files/.*'
],
alias: {
'/changelog/': 'https://raw.githubusercontent.com/deissh/osu-lazer/master/CHANGELOG.md',
'/ro/(.*)': 'ro/$1',
'/ru/(.*)': 'ru/$1',
'/(.*)': 'en/$1',
},
search: {
noData: {
'/ro/': 'Nici un rezultat!',
'/ru/': 'Не найдено',
'/': 'No results!'
},
paths: 'auto',
placeholder: {
'/ro/': 'Căutare',
'/ru/': 'Поиск',
'/': 'Search'
}
},
tabs: {
persist : true, // default
sync : true, // default
theme : 'classic', // default
tabComments: true, // default
tabHeadings: true // default
},
plugins: [
function (hook, vm) {
hook.beforeEach(function (html) {
let url;
if (/githubusercontent\.com/.test(vm.route.file)) {
url = vm.route.file
.replace('raw.githubusercontent.com', 'github.com')
.replace(/\/master/, '/blob/master');
} else {
url = 'https://github.com/deissh/rl/blob/master/docs/' + vm.route.file;
}
return '[:memo: Edit Document](' + url + ')\n' + html;
});
},
]
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify-copy-code"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
<script src="//unpkg.com/docsify-tabs@1"></script>
<!-- language highlight -->
<script src="//unpkg.com/prismjs/components/prism-json.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-go.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
</body>
</html>