Expand description
Convert text to an uwuified version.
§Quick start
Add the uwu library to your project with:
cargo add uwu-rs
Then use it:
let uwuified = uwu_rs::Uwu::new().uwuify("Hello world!");
Or, if you want more control over the generated output:
let uwu = uwu_rs::Uwu::builder()
.lowercase()
.expressions()
.w_replace()
.stutter(4)
.emojis(1)
.build();
let uwuified = uwu.uwuify("Hello world!");
Structs§
- Uwu
- An
Uwu
instance capable of running the uwu algorithm. - UwuBuilder
- A builder for the
Uwu
instance.
Enums§
- UwuError
- A Uwu error.
Functions§
- uwuify
- Converts text to an uwuified version. This is a utility method for using
Uwu::new().uwuify("input")
.