Crate zalgo[][src]

A library for easily creating modifications of text with Zalgo characters.

What is Zalgo?

Zalgo is an Internet legend about an ominous entity believed to cause insanity, death and destruction of the world, similar to the creature Cthulhu created by H.P. Lovecraft in the 1920s. Zalgo is often associated with scrambled text on webpages and photos of people whose eyes and mouth have been covered in black.

-- knowyourmeme

An example to create a modified string with Zalgo text only above the string with a high amount of Zalgo text is:

use zalgo::{Generator, GeneratorArgs, ZalgoSize};

let mut generator = Generator::new();
let mut out = String::new();
let args = GeneratorArgs::new(true, false, false, ZalgoSize::Maxi);
let result = generator.gen("my string", &mut out, &args);

Structs

Generator

A generator to perform zalgo operations.

GeneratorArgs

Arguments to provide to Generator::gen and Generator::simple_gen.

Enums

ZalgoKind

A definition of the character type to be used for retrieval.

ZalgoSize

The size of the Zalgo text within the string to produce.

Statics

ZALGO_DOWN

Denotes characters to be used in the "bottom" part of text.

ZALGO_MIDDLE

Denotes characters to be used in the "middle" part of text.

ZALGO_UP

Denotes characters to be used in the "upper" part of text.

Functions

all

Produces a Vec of the combined kinds of Zalgo chars. This is all of the chars used to create a generated Zalgo String.

is_zalgo

Determines whether a given char is a Zalgo char. This is checked by checking if a combination of the defined Zalgo chars contains the given char.