slugmin 1.0.2

Slug version which allows to use spaces and big letters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# slugmin
A small library for generating [slugs][wikipedia] from unicode strings.

This is forked version of [slug-rs](https://github.com/Stebalien/slug-rs) adapted to needs of [Szyszka](https://github.com/qarmin/szyszka) app.

Documentation: https://docs.rs/slugmin

[wikipedia]: https://en.wikipedia.org/wiki/Semantic_URL#Slug

## Usage
```rust
use slugmin::slugify;

let slug = slugify("Hello world",false);
```