-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Transliterator</title>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Bzhedug Adyghe transliterator</h1>
<form>
<textarea id="inp_text" type="textarea" rows="8" cols="80" placeholder="insert text in Bzhedug Adyghe" spellcheck="false"></textarea><br>
<div id='main'>
<label class="option">Remove punctuation
<input id="punct" type="checkbox"><span class="checkmark"></span>
</label><br>
<label class="option">Replace spaces with tabs
<input id="tab" type="checkbox"><span class="checkmark"></span>
</label><br>
<!-- <label class="option">Don't show stress
<input id="stress" type="checkbox"><span class="checkmark"></span>
</label> -->
<!-- <br>Transliteration system:
<select id="trans_sys">
<option class="system" value="fieldwork">Fieldwork</option>
<option class="system" value="ipa">IPA</option>
</select> -->
</div>
</form>
<br>
<button type="button" class="button" id="transliterate">Transliterate</button>
<!--transliterator end-->
<div id="output">
<textarea rows="8" cols="80" id="tip" name="output" spellcheck="false"></textarea>
</div>
<p align="center"><a class="git" href="https://github.com/ansorox/translit-app-bzhedug">Github</a></p>
<script type="text/javascript" src="bzhe-trans.js"></script>
</body>
</html>