forked from volca/markdown-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
44 lines (42 loc) · 1.08 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MarkDown Preview Plus</title>
<style type="text/css">
body {
margin: 0px;
font-size: 14px;
}
div.container {
width: 220px;
margin: 4px .5em;
}
</style>
<script src="js/jquery.js"></script>
</head>
<body>
<div class="container">
<label for="disable-markdown">Disable render markdown</label> <input type="checkbox" id="disable-markdown">
<hr size="1">
Default theme: <strong id="current-theme">Github-left</strong>
<hr size="1">
Set theme for this page:
<select id="theme">
<optgroup label="Default theme">
<option>Clearness</option>
<option>ClearnessDark</option>
<option>Github</option>
<option selected = "selected">Github-left</option>
<option>TopMarks</option>
<option>YetAnotherGithub</option>
</optgroup>
</select>
<hr size="1">
<button id="btn-copy">Copy As HTML</button>
<hr size="1">
<a href="options.html" target="_blank" id="link-options">Options</a>
</div>
<script src="js/popup.js"></script>
</body>
</html>