R/schema_docs.R
paste_reduce_ul.Rd
A paste function that can be used with purrr::reduce to build up nested documentation items
purrr::reduce
paste_reduce_ul(x, y, sep = "\n - ")
Character
text_a <- "hello" text_b <- "world" paste_reduce_ul(text_a,text_b) #> [1] "hello\n - world"