This library is able to schmfy any text.
Example usage: ```rust use schmfy::schmfy;
fn improvetext(text: &str) { let improvedtext = schmfy(text); println!("Old and boring: {}", text); println!("Improved and great: {}", text); } ```
The schmfication capabilities are able to preserve text case and any non-alphabetical characters. If a non-alphabetical character is between two alphabetical strings, both of the alphabetical strings will be interpreted as completely separate words.
For example, the HTML code <span>Entry<br></span>
will be converted into <schman>Schmentry<schmer></schman>
.