-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (74 loc) · 2.19 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
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TriSCA 1.1</title>
<meta name="description" content="MCTools" />
<meta name="author" content="TriMill" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="topbar">
TriSCA
</div>
<div class="main">
<div>
<div class="colheader">Rules</div>
<textarea rows="30" cols="45" id="rules">
V=aeiouə
S=fsʃx
Z=vzʒɣ
S/Z/V_V
{kg}/{kg}ʷ/_u
ai/ei/_#
au/ou/_#</textarea>
</div>
<div>
<div class="colheader">Input</div>
<textarea rows="30" cols="45" id="input">
aifau
kusni
aunəxai</textarea>
</div>
<div>
<div class="colheader"> </div>
<a href="javascript:void(0)" class="linkbutton" id="apply">Apply</a>
<a href="help.html" target="_blank" class="linkbutton">Help</a>
<a href="https://en.wikipedia.org/wiki/International_Phonetic_Alphabet#Letters"
target="_blank" class="linkbutton">IPA Chart</a>
</div>
<div>
<div class="colheader">Output</div>
<textarea rows="30" cols="45" id="output" readonly=""></textarea>
</div>
</div>
<div class="main">
<div style="width: 40%">
<div class="colheader" style="margin-left: 20%; text-align: left;">Options</div>
<div>
<input type="checkbox" id="output-style" />
<label for="output-style">Show output as <code>before → after</code></label>
</div>
<div>
<input type="checkbox" id="intermediates" />
<label for="intermediates">Show intermediate results</label>
</div>
<div>
<input type="checkbox" id="normalize" checked />
<label for="output-style"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize" target="_blank">Normalize</a> input and output</label>
</div>
<div>
<input type="checkbox" id="log-changes" />
<label for="log-changes">Log all changes applied to the console</label>
</div>
<div>
<input type="checkbox" id="enable-debug" />
<label for="enable-debug">Print debug information to the console</label>
</div>
</div>
<div class="errors" id="errors"></div>
</div>
<script src="main.js"></script>
</body>
</html>