This version changed some mappings in presets, so the same input probably won't return the same result as version 1.0.0.
- Add more word mappings, so it's on par with mohan-cao's latest owoify.
- Clean up codes by removing variable declarations in mappings.
- Add uwuify and uvuify for convenience.
- Bump up to 1.0.1
- (Breaking change) Change
owoify
function to take a copy ofOwoifyLevel
instead since it's trivially copyable. - (Breaking change) Change the visibilities of all internal functions and constants to
pub(crate)
instead ofpub
. - Improve documentation.
- Pass doctests for newly added documentation.
- Add implementation of
Owoifiable
forVec<u8>
and&[u8]
.
- Apply clippy, properly make use Rust's ownership, and implement proper builder pattern.
- Add more kaomojis.
- Bug fixes.
- Use lazy static for word and space regex. (Thanks to maxjoehnk.)