diacritics 0.2.2

Remove diacritics from letters, for example when standardizing input for a search
Documentation
1
2
3
4
5
6
7
8
9
10
# Diacritics
This is a rust crate for removing diacritics from a string. It can be useful when wanting to standardize some material to make it easier to search, among other things. 

## Example

```rust
let string = "TÅRÖÄÆØ";
let new_string = diacritics::remove_diacritics(string);
assert_eq!("TAROAAO", new_string);
```