-
Notifications
You must be signed in to change notification settings - Fork 1
/
hangul_to_phonetic_converter.html
36 lines (36 loc) · 1.3 KB
/
hangul_to_phonetic_converter.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
<!DOCTYPE html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145862581-1"></script>
<script>
if (typeof dataLayer == "undefined") dataLayer = [];
function gtag() {dataLayer.push(arguments);}
gtag("js", new Date());
gtag("config", "UA-145862581-1");
</script>
<meta charset="UTF-8" />
<title>Hangul to Phonetic Hangul Converter</title>
<link rel="stylesheet" href="converters.css" />
<script src="hangul_to_phonetic_converter.js"></script>
</head>
<body>
<div id="container">
<h1>Hangul to Phonetic Hangul Converter</h1>
<div id="options">
<h2 id="options-title">Options</h2>
<div><input type="checkbox" id="neolbTrailAsB" /><label for="neolbTrailAsB">neolbTrailAsB</label></div>
<div><input type="checkbox" id="ryeVowelAsE" checked /><label for="ryeVowelAsE">ryeVowelAsE</label></div>
<div><input type="checkbox" id="hLenition" checked /><label for="hLenition">hLenition</label></div>
<div><input type="checkbox" id="nInsertion" /><label for="nInsertion">nInsertion</label></div>
</div>
<div id="main">
<h2 id="origin-title">Hangul</h2>
<textarea id="origin" spellcheck="false"></textarea>
<h2 id="target-title">Phonetic Hangul</h2>
<div id="target"></div>
</div>
</div>
<script>var Converter = HangulToPhonetic;</script>
<script src="converters.js"></script>
</body>
</html>