This is a text generator which generates text using Markov chains. The resulting text will very likely be gibberish, but it will be gibberish resembling the original input. Essentially, the generator looks at which words are next to each other in the input, and uses this to generate output text.
Since Markov chains are all about probabilities, the generated text is random, and will likely be different each time (for long enough inputs). This page does not encrypt text, or scramble it.
Longer and more repetitive inputs tend to produce longer outputs. If the input does not have any repetition at all, then the output will always be the exact same as the input.
The generator currently supports two "modes": word and letter. Word mode looks at which words are next to each other, while letter mode instead looks at individual letters. Thus, word mode will produce more coherent text than letter mode.
Comments