zalgo 0.2.0

A crate for generating Zalgo text with defined parameters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate zalgo;

// Retrieve a `Vec` of `char`s for a specific position of zalgo text, e.g.
// the 'top' characters or 'middle' characters.
fn main() {
    // Retrieve all characters used for the 'top' of the resultant string.
    let _ = zalgo::ZALGO_UP;

    // Retrieve all characters used for the 'middle' of the resultant string.
    let _ = zalgo::ZALGO_MIDDLE;
}