This repository has been archived by the owner on Jun 1, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
47 lines (46 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>alt:V API Documentation</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="shortcut icon" href="https://raw.githubusercontent.com/altmp/docs/master/favicon.ico">
<meta name="description" content="alt:V Multiplayer scripting documentation">
<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.com/docsify-themeable/dist/css/theme-simple-dark.css">
<link rel="stylesheet" href="custom.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'alt:V API Documentation',
repo: 'https://github.com/altmp/docs',
basePath: '/',
alias: {
'/.*/_sidebar.md': '/_sidebar.md',
'/.*/_navbar.md': '/_navbar.md'
},
loadSidebar: true,
loadNavbar: true,
auto2top: true,
themeColor: '#4e753e',
mergeNavbar: true,
logo: 'logo.svg',
search: {
hideOtherSidebarContent: true,
depth: 3,
}
}
window.addEventListener('load', function() {
});
</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/[email protected]/dist/docsify-copy-code.min.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-csharp.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-javascript.min.js"></script>
</body>
</html>