hat-splitter 0.1.5

HAT splitter
Documentation
# hat-splitter

The `hat-splitter` crate implements the HAT splitting rule.

This crate is a work in progress. More information and documentation will
follow.

## Installation

```bash
cargo add hat-splitter
```

## Usage

```rust
use hat_splitter::{HATSplitter, Splitter};

fn main() {
    let my_hat_splitter = HATSplitter::new();
    let split_text: Vec<String> = my_hat_splitter.split("This is a test sentence.");
}
```