use-text 0.2.0

Composable text primitives for RustUse.
Documentation
# use-text

Composable text primitives for RustUse.

`use-text` is the thin umbrella crate for the RustUse text workspace. Use it when you want the
common prelude and reexports from `use-case`, `use-markdown`, `use-slug`, `use-token`,
`use-word`, and `use-text-line` in one dependency.

## Reexports

- `use_case`
- `use_markdown`
- `use_slug`
- `use_text_line`
- `use_token`
- `use_word`

## Example

```rust
use use_text::prelude::{extract_headings, slugify, to_snake_case, word_count};

assert_eq!(to_snake_case("HelloWorld"), "hello_world");
assert_eq!(extract_headings("# Hello World")[0].anchor, "hello-world");
assert_eq!(slugify("Hello World"), "hello-world");
assert_eq!(word_count("Hello world"), 2);
```