languagetool-rust 3.0.1

LanguageTool API bindings in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Utilities for parsing the contents of different file types into a format
//! representation that can be parsed by the LanguageTool API.

#![cfg(feature = "html")]
pub mod html;

#[cfg(feature = "markdown")]
pub mod markdown;

#[cfg(feature = "typst")]
pub mod typst;

/// Pattern that is ignored by the LanguageTool API.
const IGNORE: &str = "_";