-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
62 lines (60 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<title>CoNLL-U viewer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="../favicon.ico" type="image/ico">
<base target="_blank">
<style type="text/css">
<!--
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
body {
border: 0px;
margin: 0px;
padding: 0px;
}
#container {
margin: 1em;
}
#footer {
margin-top: 3em;
border-top: 1px solid grey;
padding-top: .4em;
font-size: small;
}
-->
</style>
</head>
<body>
<div id="container">
Upload a file with one or more sentences annotated in <a href="http://universaldependencies.org/format.html">CoNLL-U</a> format:<p>
<form action="bin/form" method="post" enctype="multipart/form-data" accept-charset="utf-8">
<input type="file" name="conllu">
<input type="submit">
</form>
<p>
Here is an <a href="example.conllu">example</a>
<p>
<b><em>—— OR ——</em></b>
<p>
Enter something in CoNLL-U format here:<p>
<form action="bin/form" method="post" enctype="multipart/form-data" accept-charset="utf-8">
<textarea name="conllu" rows="30" style="width:100%;white-space:pre"></textarea><br>
<input type="reset">
<input type="submit">
</form>
<p>
The <a href="https://universaldependencies.org/ext-format.html">CoNLL-U Plus Format</a> is supported when at least these columns are available: ID FORM HEAD DEPREL<br>
Spaces are required around <tt>global.columns</tt> and <tt>=</tt>
</p>
<div id="footer">
Sources available on <a href="https://github.com/rug-compling/conllu-viewer">github</a>
</div>
</div>
</body>
</html>