Skip to content
editor.html 1.7 KiB
Newer Older
Koichi Yasuoka's avatar
Koichi Yasuoka committed
<!DOCTYPE html><head><meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
Koichi Yasuoka's avatar
Koichi Yasuoka committed
<title>CoNLL-U SVG Editor by Koichi Yasuoka, June 15, 2019.</title>
Koichi Yasuoka's avatar
Koichi Yasuoka committed
<script src="conllusvgview.js"></script>
<script src="conllusvgedit.js"></script>
<script src="conllusvgload.js"></script>
Koichi Yasuoka's avatar
Koichi Yasuoka committed
<script type="text/javascript">
function editorCheckURL(textid){
  var tx=document.getElementById(textid);
  var h=location.href;
  var i=h.indexOf("#");
  if(0>i)
    return;
  if(1>h.length-i)
    return;
  h=decodeURIComponent(h.slice(i+1))+"\n";
  if(tx.value==null)
    tx.textContent=h;
  else
    tx.value=h;
}
function editorChangeURL(textid){
  var tx=document.getElementById(textid);
  var h=location.href+"#";
  var i=h.indexOf("#");
  var v=tx.value;
  if(v==null)
    v=tx.textContent;
  location.href=h.substring(0,i+1)+encodeURIComponent(v);
}
Koichi Yasuoka's avatar
Koichi Yasuoka committed
editorInsertTextline=conllusvg.insertTextline
conllusvg.insertTextline=function(textid,i,j,t){
  editorInsertTextline(textid,i,j,t);
  editorChangeURL(textid);
}
Koichi Yasuoka's avatar
Koichi Yasuoka committed
</script>
Koichi Yasuoka's avatar
Koichi Yasuoka committed
</head>
<body>
<table noborder><tr><td nowrap>
<input type="button" value="load CoNLL-U" onclick="conllusvg.loadLocal('conllu')" />
<input type="button" value="save CoNLL-U" onclick="conllusvg.saveLocal('conllu')" />
<text id="status" />
</td></tr></table>
Koichi Yasuoka's avatar
Koichi Yasuoka committed
<textarea cols="120" rows="10" id="conllu" onchange="conllusvg.reparse('conllu');editorChangeURL('conllu')">
Koichi Yasuoka's avatar
Koichi Yasuoka committed
1	I	I	PRON	_	_	2	nsubj	_	_
2	have	have	VERB	_	_	0	root	_	_
3	a	a	DET	_	_	4	det	_	_
4	pen	pen	NOUN	_	_	2	obj	_	SpaceAfter=No
5	.	.	PUNCT	_	_	2	punct	_	_
</textarea>
Koichi Yasuoka's avatar
Koichi Yasuoka committed
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" onload="editorCheckURL('conllu');conllusvg.edit(this,'conllu')">
Koichi Yasuoka's avatar
Koichi Yasuoka committed
</svg>
</body>