# Lorem Ipsum Generate placeholder text — zero dependencies. ``` python scripts/run.py 3 python scripts/run.py 5 --unit sentences python scripts/run.py 20 --unit words python scripts/run.py 2 --classic python scripts/run.py 4 --seed 42 ``` Pure Python stdlib (`random` + embedded latin word pool). --- name: lorem-ipsum display_name: Lorem Ipsum description: "Generate placeholder lorem ipsum text by words, sentences, or paragraphs, with optional classic opening and reproducible seed. Triggers: lorem ipsum, placeholder text, dummy text, filler text, generate paragraphs." --- # Lorem Ipsum Generate placeholder text for mockups and tests. ## When to use The user needs filler text — a few words, some sentences, or several paragraphs — for a design, template, or test fixture. ## How to use Run `scripts/run.py` with a count and unit: - `python scripts/run.py 3` — 3 paragraphs (default unit). - `python scripts/run.py 5 --unit sentences` — 5 sentences. - `python scripts/run.py 20 --unit words` — 20 words. - `python scripts/run.py 2 --classic` — start with the classic "Lorem ipsum dolor sit amet..." line. - `python scripts/run.py 4 --seed 42` — reproducible output. Output goes to stdout; paragraphs are separated by blank lines. ## Pitfalls - `count` must be >= 1, otherwise it exits non-zero. - Without `--seed` the text is random each run; pass `--seed` for stable results in tests. - `--classic` only affects the first unit (word/sentence/paragraph).
Lorem Ipsum by langbot-team
Generate placeholder lorem ipsum text by words, sentences, or paragraphs, with optional classic opening and reproducible seed.
Loading...