-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (27 loc) · 1.04 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Excel to Markdown table converter</title>
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<h1>Excel to Markdown table converter</h1>
<div class="textarea-container">
<label for="excel-textarea">Excel table:</label>
<textarea id="excel-textarea" rows="10" oninput="startFormatting()"></textarea>
</div>
<div class="textarea-container">
<label for="markdown-textarea">Markdown table:</label>
<textarea id="markdown-textarea" rows="10"></textarea>
<button class="copy-btn" onclick="copyMarkdownTable()">Copy to clipboard</button>
</div>
<div class="mode-container">
<button id="mode-toggle" class="mode-toggle-btn"></button>
<span class="mode-text">Change Mode</span>
</div>
</div>
<script src="index.js"></script>
</body>
</html>