LanguageToolR
provides a wrapper for the LanguageTool CLI tool for spelling, grammar and language checking.
:heavy_exclamation_mark: We're not part of the LanguageTool team. This is an unofficial interface.
We only tested with LanguageTool v6.5, but it will work as well with other versions, if more obscure command line options are avoided.
if (!require(remotes)) install.packages("remotes")
remotes::install_github("nevrome/LanguageToolR")
LanguageToolR::lato_quick_setup()
This will install the currently supported version (see above).
testtext <- c(
"LanguageTool offers spell and grammar checking.",
"Just paste your text here and click the 'Check Text' button.",
"Click the colored phrases for details on potential errors.",
"or use this text too see an few of of the problems that LanguageTool can detecd.",
"What do you thinks of grammar checkers? Please not that they are not perfect.",
"Style issues get a blue marker: It's 5 P.M. in the afternoon.",
"The weather was nice on Thursday, 27 June 2017."
)
LanguageToolR::languagetool(testtext)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.