-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpanel.html
49 lines (46 loc) · 1.7 KB
/
panel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table to Markdown</title>
<link rel="stylesheet" href="panel.css">
</head>
<body>
<div class="container">
<img src="images/logo_128.png" alt="Table to Markdown Logo">
<h1>Table To Markdown Converter</h1>
<ol>
<li>Go to the Elements tab.</li>
<li>Select the table.</li>
<li>Open this tab.</li>
<li>Click Convert!</li>
</ol>
<div class="options-dropdown">
<div class="options-wrapper">
<input class="accordion-checkbox" type="checkbox" checked>
<div class="options-header">
<h2>Options</h2>
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15">
<path fill="#e63946" d="M1.092 1.278L2.182 0l2.2 2.516L6.58 5.03 8.78 2.516 10.979 0l1.09 1.278 1.09 1.278-3.11 3.54C8.337 8.045 6.856 9.716 6.759 9.81l-.178.17-.179-.17c-.098-.094-1.578-1.764-3.289-3.712L0 2.556z"/>
</svg>
</div>
<div class="options">
<label for="blank-header">
<input type="checkbox" name="blank-header" id="blank-header">
Leave the header blank
</label>
<label for="no-pretty-print">
<input type="checkbox" name="no-pretty-print" id="no-pretty-print">
Disable pretty printing
</label>
</div>
</div>
</div>
<button id="convert">Convert</button>
<h3>Simply click in the box to select the text.</h3>
<textarea name="markdown" id="markdown" placeholder="Markdown will appear here" readonly wrap="off"></textarea>
</div>
<script src="panel.js"></script>
</body>
</html>