-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnote.html
54 lines (48 loc) · 1.16 KB
/
note.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
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>Markdown Note</title>
<link href='css/markdown.note.css' rel='stylesheet'>
<link href='css/markdown.themes.basic.css' rel='stylesheet'>
<script src='js/showdown.min.js'></script>
<script src='js/markdown.note.js'></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
markdown_note_new();
});
</script>
</head>
<body>
<table width='100%'>
<colgroup>
<col width='50%'>
<col width='50%'>
</colgroup>
<tr>
<td>
<!-- first column -->
<div id='input'>
<textarea id='note' class='black'></textarea>
</div>
</td>
<td style='vertical-align: top;'>
<!-- second column -->
<div id='output' class='markdown'></div>
<textarea id='output-source' readonly='readonly'></textarea>
</td>
</tr>
<tr>
<td>
<!-- first column -->
<a id='output-update' href='#'>[ Update ]</a>
<a id='input-toggle' href='#'>[ Use White Color Theme ]</a>
</td>
<td style='vertical-align: top;'>
<!-- second column -->
<a id='output-toggle' href='#'>[ Show HTML ]</a>
</td>
</tr>
</table>
</body>
</html>