-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnote.html
72 lines (57 loc) · 1.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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/lib3rd/jquery-2.0.1.min.js'></script>
<script src='js/lib3rd/showdown.min.js'></script>
<script src='js/lib3rd/pagedown.js'></script>
<script src='js/markdown.api.js'></script>
<script src='js/markdown.lib.js'></script>
<script src='js/markdown.note.js'></script>
<script>
$(document).ready( 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 -->
<span>
Use <select id='note-lib'></select>
</span>
<a id='output-update' href='#'>[ Update ]</a>
<a id='input-toggle' href='#'>[ Use White Color Theme ]</a>
<!-- nb: div will break/start new line -->
<div id='output-loading'></div>
</td>
<td style='vertical-align: top;'>
<!-- second column -->
<a id='output-toggle' href='#'>[ Show HTML ]</a>
</td>
</tr>
</table>
</body>
</html>