-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
133 lines (118 loc) · 4.36 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ml2en - Malayalam to English ('Manglish') transliterator</title>
<meta name="description" content="An algorithm to transliterate Malayalam script to Roman / Latin characters (commonly 'Manglish') with relative phonetic fairness. Available in Python, Javascript, PHP" />
<meta name="keywords" content="malayalam to english, malayalam to manglish, convert malayalam to english, convert malayalam to manglish, malayalam convert python, malyalam convert javascript, transliterate malayalam to english, romanize malayalam, latinize malayalam" />
<script src="ml2en.js"></script>
<style>
body {
background: #eee;
font-family: 'Helvetica Neue', 'Helvetica', Arial, serif;
font-size: 12px;
color: #333;
}
#main {
background: #fff;
margin: 30px auto 0 auto;
padding: 20px 30px;
width: 900px;
border: 1px solid #ccc;
box-shadow: inset 0 0 10px #eee, 0 0 3px #ddd;
}
.buttons a {
background: #FF4C00;
padding: 4px 8px;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.buttons a:hover {
background: #000;
}
.from {
width: 49%;
float: left;
}
.to {
width: 49%;
float: right;
}
textarea {
width: 90%;
height: 320px;
font-size: 1.5em;
padding: 15px;
}
a {
color: #000;
}
pre {
background: #f5f5f5;
padding: 10px;
margin-bottom: 20px;
}
.credit {
margin-top: 15px;
font-size: 11px;
}
.clear {
clear: both;
}
</style>
</head>
<body>
<div id="main">
<h1>ml2en (Python, Javascript, PHP)</h1>
<p>
An algorithm to transliterate Malayalam script to Roman / Latin characters (commonly 'Manglish') with reasonable phonetic fairness
</p>
<p class="buttons">
<a href="http://github.com/knadh/ml2en">GitHub page</a> <a href="https://github.com/knadh/ml2en/zipball/master">Download ZIP</a>
</p>
<div class="from">
<h2>Paste Malayalam input</h2>
<textarea id="from">വ്യാഴത്തിന്റെ കാന്തികക്ഷേത്രം സൗരവാതത്തെ ചെറുക്കുന്ന മേഖലയാണ് വ്യാഴത്തിന്റെ കാന്തമണ്ഡലം. സൂര്യനിലേക്കുള്ള ദിശയിൽ ഏതാണ്ട് എഴുപത് ലക്ഷം കിലോമീറ്ററും വിപരീത ദിശയിൽ ശനിയുടെ പരിക്രമണപഥം വരെയും ഇത് വ്യാപിച്ചുകിടക്കുന്നു. സൗരയൂഥത്തിലെ ഗ്രഹങ്ങളുടെ കാന്തമണ്ഡലങ്ങളിൽ വച്ച് ഏറ്റവും ശക്തിയേറിയതാണ് വ്യാഴത്തിന്റേത്. സൗരമണ്ഡലം കഴിഞ്ഞാൽ സൗരയൂഥത്തിലെ ഏറ്റവും വലിയ ഘടനയും ഇതുതന്നെ. ഭൂമിയുടെ കാന്തമണ്ഡലത്തെക്കാൾ വീതിയേറിയതും പരന്നതുമായ വ്യാഴത്തിന്റെ കാന്തമണ്ഡലത്തിന്റെ ശക്തി ഭൂമിയൂടേതിന്റെ പത്തിരട്ടിയോളവും വ്യാപ്തം 18000 ഇരട്ടിയോളവുമാണ്.</textarea>
</div>
<div class="to">
<h2>Romanized ('Manglish') output</h2>
<textarea id="to"></textarea>
</div>
<div class="clear"> </div>
<div class="usage">
<h1>Usage</h1>
The algorithm's available in three different languages, Python, Javascript, and PHP.
<h3>Python</h3>
<pre>
from ml2en import ml2en
converter = ml2en()
result = converter.transliterate(ml_str)
</pre>
<h3>Javascript</h3>
<pre>
<script src="ml2en.js"></script>
<script>
var result = ml2en.transliterate(ml_str);
</script>
</pre>
<h3>PHP</h3>
<pre>
<?php
require 'ml2en.php';
$result = ml2en::transliterate($ml_str);
?>
</pre>
</div>
<div class="credit">
<a href="http://nadh.in">Kailash Nadh</a>, October 2012.
</div>
</div>
<script>
document.getElementById('to').value = ml2en(document.getElementById('from').value);
document.getElementById('from').onkeyup = function() {
document.getElementById('to').value = ml2en(this.value);
};
</script>
</body>
</html>