-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (67 loc) · 2.97 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
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
<!doctype html>
<html lang="ko">
<head>
<meta name="viewport" content="user-scalable=yes, initial-scale=1.0, maximum-scale=3.0, minimum-scale=1.0, width=device-width" />
<meta charset="utf-8">
<title>Mediawiki Table Converter</title>
<link href="./assets/reset.css" rel="stylesheet">
<link href="./assets/app.css" rel="stylesheet">
<link href="./assets/checkbox.css" rel="stylesheet">
<link href="./assets/button.css" rel="stylesheet">
<script src="./dist/app.t2mw.js"></script>
</head>
<body>
<div class="t2m-container">
<div class="t2m-box t2m-box-input">
<div>
<h1 class="t2m-box-header">입력</h1>
<div class="t2m-box-textwrap">
<textarea id="input" rows="14" placeholder="" autofocus></textarea>
</div>
</div>
<div class="t2m-box-input-options">
<label class="check-wrap" for="opt_included_header">헤더 포함
<input type="checkbox" id="opt_included_header" checked="checked">
<span class="checkmark"></span>
</label>
<label class="check-wrap" for="opt_sortable">sortable 옵션
<input type="checkbox" id="opt_sortable">
<span class="checkmark"></span>
</label>
<label class="check-wrap" for="opt_only_items">중간부분만
<input type="checkbox" id="opt_only_items">
<span class="checkmark"></span>
</label>
<label class="check-wrap" for="opt_reverse">반전
<input type="checkbox" id="opt_reverse">
<span class="checkmark"></span>
</label>
</div>
</div>
<div class="t2m-box t2m-box-output">
<div class="t2m-box-header">
<h1>결과</h1>
<button id="btn_copyresult" class="primary">결과 복사</button>
</div>
<div class="t2m-box-textwrap">
<pre id="output"></pre>
</div>
</div>
<div class="t2m-help">
<dl>
<dt>설명</dt>
<dd>- 엑셀 등에서 복사하여 tab으로 나뉜 부분을 미디어위키 테이블 형식으로 변환합니다.</dd>
<dd>- 동작에 이상이 있을 시, 크롬 기준 <kbd>ctrl + shift + R</kbd>을 눌러서 브라우저 캐시를 갱신해주세요.</dd>
</dl>
<h3 style="margin-top:2em">링크</h3>
<ul>
<li>- <a href="./t2doku.html" target="_blank">탭 -> 도쿠위키</a></li>
<li>- <a href="./t2markdown.html" target="_blank">탭 -> 마크다운</a></li>
</ul>
</div>
</div>
<div style="text-align:right; padding: 0 1rem">
<p>© 2016-2022 <a href="https://github.com/exizt" target="_blank">exizt</a></p>
</div>
</body>
</html>