forked from VelocityRa/awesome-game-file-format-reversing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.12 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Awesome Game File Format Reversing</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Curated collection of resources for reversing game file formats."
/>
<link
rel="icon"
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ctext x='0' y='14'%3E🎮%3C/text%3E%3C/svg%3E"
/>
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Awesome Game File Format Reversing',
repo: 'https://github.com/VelocityRa/awesome-game-file-format-reversing',
homepage: 'README.md',
loadNavbar: true,
loadSidebar: true,
coverpage: true,
maxLevel: 4,
search: 'auto'
};
</script>
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>