1.1.1 • Published 8 months ago
jquery-spellchecker-lt v1.1.1
jQuery-SpellChecker-LT
jQuery-SpellChecker-LT - Add a SpellChecker integration to any editor using LanguageTool's API.
Demo
Usage
You can just init the spellchecker with the default configuration using jQuery.
$('#documentEditor').spellchecker();
Custom Options
You can provide custom options to the spellchecker.
$('#documentEditor').spellchecker({
endpoint_url: "https://api.languagetool.org/v2/check",
request_cooldown: 6.2
});
Options available:
endpoint_url
: The URL where will connect to retrieve the spell check. This is ideal for set a custom languagetool server endpoint.request_cooldown
: Change the wait time when the user start's typing to connect into the endpoint.language
: Change the language of the spellchecker (default is "auto").username
: Your username/email as used to log in at languagetool.org for Premium API access.api_key
: Set to get Premium API access.