owoify/README.md

29 lines
649 B
Markdown
Raw Permalink Normal View History

2019-08-01 12:50:39 +00:00
# owoify
A simple rust library for string owoification.
Inspired by:
* [owo text generator](https://honk.moe/tools/owo.html)
* [OWO Chrome extension](https://chrome.google.com/webstore/detail/owo/jolaggjkdhhgcdhcjjhfkkbllefoggob?hl=en)
# Credits
* [MashAllPotatoes](https://twitter.com/MashNewGamePlus) - Regular expressions and some of the owo faces
# Usage
Add this to ``Cargo.toml``:
2019-08-01 14:20:58 +00:00
```toml
2019-08-01 12:50:39 +00:00
[dependencies]
2019-12-30 01:00:26 +00:00
owoify = "0.1.5"
2019-08-01 12:50:39 +00:00
```
``example.rs``:
2019-08-01 14:20:58 +00:00
```rust
2019-08-01 12:50:39 +00:00
use owoify::OwOifiable;
fn main() {
let text = String::from("euthanize me senpai!!");
println!("{}", text.owoify());
}
```
# Documentation
* [Docs.rs](https://docs.rs/owoify)