forked from graphemecluster/graphemecluster.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpinyin_to_hangul_converter.html
34 lines (34 loc) · 1.16 KB
/
pinyin_to_hangul_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
<!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>Pinyin to Hangul Converter 漢語拼音諺文轉換器</title>
<link rel="stylesheet" href="converters.css" />
<script src="pinyin_to_hangul_converter.js"></script>
</head>
<body>
<div id="container">
<h1>Pinyin to Hangul Converter 漢語拼音諺文轉換器</h1>
<div id="options">
<h2 id="options-title">Options 選項</h2>
<div><input type="checkbox" id="replacementMode" checked /><label for="replacementMode">replacementMode</label></div>
<div><input type="checkbox" id="withTone" /><label for="withTone">withTone</label></div>
</div>
<div id="main">
<h2 id="origin-title">Pinyin 漢語拼音</h2>
<textarea id="origin" spellcheck="false"></textarea>
<h2 id="target-title">Hangul 諺文</h2>
<div id="target"></div>
</div>
</div>
<script>var Converter = PinyinToHangul;</script>
<script src="converters.js"></script>
</body>
</html>