-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
117 lines (90 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SPWN Documentation</title>
<meta content="SPWN Documentation" property="og:title">
<meta
content="Documentation for the SPWN programming language, a language that converts code to Geometry Dash levels."
property="og:description">
<meta content="https://spu7nix.net/spwn" property="og:url">
<meta content="https://spu7nix.net/spwn/assets/spwn_logo_large.png" property="og:image">
<meta content="#72cf5f" data-react-helmet="true" name="theme-color">
<meta property="theme-color" content="#72cf5f">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="content">
<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://unpkg.com/[email protected]/dist/css/theme-simple-dark.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar.min.css" />
<style>
/* Custom color theme. */
:root {
--mono-hue: 220;
--theme-hue: 180;
--theme-saturation: 50%;
--table-cell-border-width: 0px;
--code-theme-background: #191b20;
--table-row-odd-background: #26354230;
--code-theme-function: #aa8bff;
--code-theme-tag: #ff7c7c;
--code-theme-operator: #bdbdbd;
--sidebar-background: #13151b;
--base-background-color: #21242e;
--blockquote-background: #05070c30;
--sidebar-nav-link-color: rgba(255, 255, 255, 0.445);
--sidebar-nav-strong-font-size: 1rem;
--sidebar-nav-link-text-decoration-color: rgba(255, 255, 255, 0.7);
--link-color: #ffffff6b;
--link-text-decoration: underline;
}
a code {
font-weight: 600;
}
.folder {
transition: 0.3s;
}
.sidebar-nav code {
color: #ffe7e73b;
}
.collapse {
--sidebar-nav-strong-color: rgba(255, 255, 255, 0.459);
/* --sidebar-nav-strong-font-size: 0.7rem; */
}
.token.tag {
color: #ebd884;
}
.markdown-section th {
border-bottom: 2px solid var(--table-cell-border-color);
}
.markdown-section td {
border-bottom: 2px solid var(--table-cell-border-color);
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'SPWN Documentation',
repo: 'https://github.com/Spu7Nix/spwn_docs',
loadSidebar: true,
search: {
noData: 'No results!',
paths: 'auto',
placeholder: 'Search'
},
logo: "assets/spwn_logo_name_large.png",
subMaxLevel: 1,
sidebarDisplayLevel: 10, // set sidebar display level
auto2top: true,
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>
<script src="try/ansi_up.js"></script>
<script src="run-spwn-plugin\index.js"></script>
<script src="./prism-spwn.js"></script>
</body>
</html>