Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 619 Bytes

File metadata and controls

29 lines (25 loc) · 619 Bytes
layout title
default
example-title

This page is written in Markdown.

import Document from udapi.core.document;
import cz.ufal.udapi.core.impl.DefaultDocument;
Document doc = new DefaultDocument();
doc = new CoNLLUReader("test.conllu").readDocument();
use Udapi::Core::Document;
my $doc = Udapi::Core::Document->new();
$doc->load_conllu('test.conllu');
import Document from udapi.core.document
doc = Document()
doc.load({'filename':'test.conllu'}) 

{% highlight bash %} cd ~ echo "Hello $world" {% endhighlight %}