Generates random, customisable placeholder text using the Seazon API.
Usage
lipsum_seazon(
latin = TRUE,
start_with_lorem = TRUE,
use_periods = TRUE,
use_sentence_case = TRUE,
p = TRUE,
use_double_spaces = FALSE,
random_numbers = FALSE,
random_latin = TRUE,
min_letters = 2L,
max_letters = 9L,
min_words = 45L,
max_words = 85L,
min_paras = 3L,
max_paras = 4L
)
Arguments
- latin
Logical. If
TRUE
, generates Latin text. Otherwise generates random text. Defaults toTRUE
.- start_with_lorem
Logical. If
TRUE
, begins the text with 'Lorem Ipsum'. Defaults toTRUE
.- use_periods
Logical. If
TRUE
, uses periods. Defaults toTRUE
.- use_sentence_case
Logical. If
TRUE
, begins each sentence with an upper case character. Defaults toTRUE
.- p
Logical. If
TRUE
, wraps text in paragraph tags. Defaults toTRUE
.- use_double_spaces
Logical. If
TRUE
, puts double spaces after each sentence. Defaults toFALSE
.- random_numbers
Logical. If
TRUE
, adds random numbers if 'latin = FALSE'. Defaults toTRUE
.- random_latin
Logical. If
TRUE
, makes the random text latin-like if 'latin = FALSE'. Defaults toTRUE
.- min_letters, max_letters
Minimum/maximum numbers of letters in each word, when 'latin = FALSE'.
- min_words, max_words
Minimum/maximum paragraph word count.
- min_paras, max_paras
Minimum/maximum number of paragraphs.#'
See also
Other practical generators:
lipsum_corporate()
,
lipsum_loripsum()
,
lipsum_markdown()