-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script type='text/javascript' src='./static/js/editor_transliterate.js'></script>
<script type='text/javascript' src='./static/js/tribute.js'></script>
<script type='text/javascript' src='./static/js/trix.js'></script>
<link rel="stylesheet" href="./static/css/tribute.css">
<link rel="stylesheet" href="./static/css/trix.css">
<script>
window.addEventListener('load', function () {
var tributeComplete = new TributeComplete();
tributeComplete.tribute.attach(document.getElementById("editor"));
});
</script>
</head>
<body>
<form>
<input id="x" type="hidden" name="content">
<trix-editor input="x" id="editor"> </trix-editor>
</form>
<br>
<p>Manglish to Malayalam</p>
<p>Note:- Use space/tab to select first option</p>
<a href="https://github.com/krishnanunnir/manglish">Github</a>
</body>
</html>