Go to file
JonOfUs a16860f631 WebAssembly support 2024-05-10 14:32:05 +02:00
src WebAssembly support 2024-05-10 14:32:05 +02:00
.gitignore WebAssembly support 2024-05-10 14:32:05 +02:00
Cargo.toml WebAssembly support 2024-05-10 14:32:05 +02:00
README.md WebAssembly support 2024-05-10 14:32:05 +02:00

README.md

Schmfy library

This library is able to schmfy any text.

Usage

Example usage:

use schmfy::schmfy;

fn improve_text(text: &str) {
    let improved_text = schmfy(text);
    println!("Old and boring: {}", text);
    println!("Improved and great: {}", improved_text);
}

The library can be compiled to WebAssembly. You will need wasm-pack (cargo install wasm-pack) and can then build the library with wasm-pack build --target web. This generates a pkg folder which can be used in web environments.

Capabilities

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>.