-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 857 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
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Markdown Viewer
</title>
<!-- favicon -->
<link
rel="icon"
type="image/svg+xml"
href="./public/file-lines-regular.svg" />
<!-- code highlighting library prism.js -->
<link rel="stylesheet" href="./libraries/prism.css">
</head>
<body>
<main>
<div id="react-container-1" class="react-container">
<div>
</main>
<script>
/* pre-set project in test suite and hide window */
localStorage.setItem("fCC_markdown-previewer_hide", true);
localStorage.setItem("project_selector", "markdown-previewer");
</script>
<script type="module" src="./src/main.jsx"></script>
<script src="./libraries/test bundle.js"></script>
<script src="./libraries/prism.js"></script>
</body>
</html>