-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 1.01 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
<!doctype html>
<html>
<head>
<title>Markup & Markdown</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width"
/>
<link rel="stylesheet" type="text/css" href="../css/spaces.css" />
<link rel="stylesheet" type="text/css" href="../css/slides.css" />
<link rel="stylesheet" type="text/css" href="../css/nord-dark.css" />
<link rel="stylesheet" type="text/css" href="../css/nord-light.css" />
<link rel="stylesheet" type="text/css" href="../css/font-nord.css" />
<link rel="stylesheet" type="text/css" href="../css/bg-nord.css" />
<link rel="stylesheet" type="text/css" href="../css/style.css" />
<script>
function create() {
return remark.create({
sourceUrl: "README.md",
ratio: "4:3", // 窗口比例
});
}
</script>
</head>
<body onload="slideshow = create()">
<script src="../js/remark.min.js"></script>
</body>
</html>