-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 966 Bytes
/
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>javascript</title>
<script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
<style>
#md-content {
width: 100%;
max-width: 1200px;
padding: 0 1rem;
margin: 0 auto;
color: #222;
box-sizing: border-box;
}
</style>
</head>
<body>
<div id="md-content"></div>
<script>
fetch("README.md")
.then((response) => response.text())
.then((md) => {
var converter = new showdown.Converter();
document.querySelector("#md-content").innerHTML =
converter.makeHtml(md);
});
</script>
<script src="https://dusunax.github.io/javascript/assets/js/mvp.js"></script>
</body>
</html>