Skip to content

fiduswriter/fiduswriter-languagetool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6d579af · Feb 10, 2025
Feb 10, 2025
Feb 10, 2025
Jan 23, 2025
Jan 13, 2025
Mar 17, 2022
Jan 13, 2025
Sep 13, 2017
Jul 15, 2019
Mar 1, 2023
Jan 13, 2025
Jan 13, 2025
Feb 10, 2025
Jan 13, 2025
Jan 13, 2025

Repository files navigation

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]
  1. Add "languagetool" to your INSTALLED_APPS setting in the configuration.py file like this::
INSTALLED_APPS += (
    ...
    'languagetool',
)
  1. Add a setting for the URL where you are running Languagetool in the configuration.py file like this:
LT_URL = 'http://localhost:8081'
  1. Create the needed JavaScript files by running this::
python manage.py transpile
  1. (Re)start your Fidus Writer server.