Expand description
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.
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.
- Generator
Args - Arguments to provide to
Generator::gen
andGenerator::simple_gen
.
Enums§
- Zalgo
Kind - A definition of the character type to be used for retrieval.
- Zalgo
Size - 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.