Metadata-Version: 2.4
Name: fiduswriter-languagetool
Version: 4.1.0
Summary: A Fidus Writer plugin to connect to Languagetool.
Author-email: Johannes Wilm <johannes@fiduswriter.org>
License-Expression: AGPL-3.0-or-later
Project-URL: repository, https://github.com/fiduswriter/fiduswriter-languagetool
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 6.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

FidusWriter-Languagetool
========================

FidusWriter-Languagetool is a Fidus writer plugin to connect a Fidus Writer instance
with Languagetool (LT).

**NOTE:** You should first install Languagetool (a Java program) and make it run as a server. It is included in the Ubuntu Snap version of Fidus Writer so that will be the simplest way to install it for 99% of users.

Installation
------------

1. Install Fidus Writer with the correct version of the plugin like this:

```
pip install fiduswriter[languagetool]
```

2. Add "languagetool" to your INSTALLED_APPS setting in the configuration.py file
   like this::

```python
INSTALLED_APPS += (
    ...
    'languagetool',
)
```

3. Add a setting for the URL where you are running Languagetool in the configuration.py file like this:

```python
LT_URL = 'http://localhost:8081'
```

4. Create the needed JavaScript files by running this::

```
python manage.py transpile
```

5. (Re)start your Fidus Writer server.
