ainu-utils 0.5.1

A collection of utilities for the Ainu language
Documentation
static SYMBOLS: [(&str, &str); 15] = [
    ("-", ""),
    ("=", ""),
    (" ", " "),
    ("", ""),
    ("", ""),
    ("", ""),
    ("", ""),
    ("...", ""),
    ("(", ""),
    (")", ""),
    (",", ""),
    (".", ""),
    ("!", ""),
    ("?", ""),
    ("`", ""),
];

pub fn map_punc(input: &str) -> String {
    let mut output = input.to_string();

    for (from, to) in SYMBOLS.iter() {
        output = output.replace(from, to);
    }

    output
}