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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>A noticable note editor</title>
<meta name="description" content="" />
<link rel="stylesheet" href="node_modules/github-markdown-css/github-markdown.css" />
<style>
body {
height: 95vh;
padding: 0;
}
.sidebar {
width: 200px;
height: 100%;
position: fixed;
top: 0;
left: 0;
background-color: #000;
overflow-x: hidden;
}
.sidebar li {
color: #fff;
}
.sidebar a {
color: #fff;
text-decoration: none;
display: block;
}
.container {
max-width: 1000px;
height: 100%;
margin-left: 200px;
transition: all 0.4s ease-out;
display: none;
}
.container.focused {
display: block;
}
#container-editor {
border: 1px solid #ccc;
}
</style>
</head>
<body>
<div class="sidebar">
<ul id="list-filenames"></ul>
</div>
<div class="container focused" id="container-editor"></div>
<div class="container markdown-body" id="container-results"></div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/monaco-editor/min/vs/loader.js"></script>
<script src="renderer.js"></script>
</body>
</html>