-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabular.html
More file actions
38 lines (33 loc) · 1.03 KB
/
tabular.html
File metadata and controls
38 lines (33 loc) · 1.03 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tabular Text Parser</title>
<link rel="stylesheet"
href="//cdn.rawgit.com/milligram/milligram/master/dist/milligram.min.css">
<style>
select { width: 70%; }
textarea { width: 100%; height: 200px; }
#input, #output { font-family: monospace; }
#output { white-space: preserve nowrap; }
.error { color: red; }
</style>
</head>
<body>
<h1>Tabular Text Parser</h1>
<select id="options">
<option>CSV: Comma-separated values</option>
<option>TSV: Tab-separated values</option>
</select>
<button id="example">
Load Example
</button>
<h2>Input</h2>
<textarea id="input"></textarea>
<h2>Output</h2>
<div id="output"></div>
<script src="tabular.dart.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QK0KCHXW3F"></script>
<script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-QK0KCHXW3F');</script>
</body>
</html>