snapper-fmt 0.7.7

Semantic line break formatter for Org, LaTeX, Markdown, and plaintext
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "neural")]
pub mod neural;
pub mod unicode;

/// Trait for sentence boundary detection.
pub trait SentenceSplitter {
    /// Split a prose string into individual sentences.
    fn split(&self, text: &str) -> Vec<String>;
}