-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 863 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 863 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>简易KV系统</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/github-markdown-css/github-markdown.min.css">
<style>
body {
padding: 2rem;
}
</style>
</head>
<body>
<div class="markdown-body" id="content">Loading README.md...</div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
fetch('README.md')
.then(response => response.text())
.then(markdown => {
document.getElementById('content').innerHTML = marked.parse(markdown);
})
.catch(err => {
document.getElementById('content').innerText = '无法加载 README.md 文件';
console.error(err);
});
</script>
</body>
</html>