Crate uwu_rs

source ·
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§

  • An Uwu instance capable of running the uwu algorithm.
  • A builder for the Uwu instance.

Enums§

Functions§

  • Converts text to an uwuified version. This is a utility method for using Uwu::new().uwuify("input").