Skip to content

Commit eb4db4b

Browse files
committed
fix and documentation update for new FoLiA library
1 parent 4ca61c8 commit eb4db4b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Installation
1919
Easy
2020
~~~~~~~~~~
2121

22-
For easy installation, please use our LaMachine distribution (https://proycon.github.io/LaMachine).
22+
For easy installation, please use our `LaMachine distribution <https://proycon.github.io/LaMachine>`_
2323

2424
Manual
2525
~~~~~~~~~~~~
2626

27-
* Make sure to first install Frog itself (https://languagemachines.github.io/frog) and all its dependencies
27+
* Make sure to first install `Frog <https://languagemachines.github.io/frog>`_ and all its dependencies
2828
* Install Cython if not yet available on your system: ``$ sudo apt-get cython cython3`` (Debian/Ubuntu, may differ for others)
2929
* Run: ``$ sudo python setup.py install``
3030

@@ -96,9 +96,9 @@ well as FoLiA input (set ``FrogOptions(xmlin=True)``). The FoLiA format exposes
9696
annotation in a more structured and more formal way.
9797

9898
Whenever FoLiA output is requested, the ``process()`` method will return an instance of ``folia.Document``, which is
99-
provided by the PyNLPL library (``pynlpl.formats.folia`` module). This loads the entire FoLiA document in memory and
99+
provided by the `FoLiApy library <https://github.com/proycon/foliapy>`_. This loads the entire FoLiA document in memory and
100100
allows you to inspect it in any way you see fit. Extensive documentation for this library can be found here:
101-
http://pynlpl.readthedocs.io/en/latest/folia.html
101+
http://folia.readthedocs.io/
102102

103103
An example can be found below:
104104

frog_wrapper.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cimport libfolia_classes
2121
cimport frog_classes
2222

2323
try:
24-
from foliapy.main import Document as FoliaPyDocument
24+
from folia.main import Document as FoliaPyDocument
2525
HASFOLIAPY = True
2626
except:
2727
try:

0 commit comments

Comments
 (0)