forked from vittorioromeo/marp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.html
More file actions
29 lines (25 loc) · 961 Bytes
/
note.html
File metadata and controls
29 lines (25 loc) · 961 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Marp</title>
<script>window.jQuery = window.$ = require('jquery');</script>
<link rel="stylesheet" href="node_modules/photon/dist/css/photon.css" />
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css" />
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<div class="window">
<div class="window-content">
<div class="pane-group">
<div class="pane markdown" id="md-pane">
<div id="notes" wrap="soft" style="width: 100%; height: 100%; font-size: 22pt;"></div>
</div>
</div>
<button id="tless" type="button" style="position:fixed; left:0; width: 20px; height: 20px">-</button>
<button id="tmore" type="button" style="position:fixed; left:20px; width: 20px; height: 20px">+</button>
</div>
</div>
</body>
<script src="js/notes.js"></script>
</html>