# https://github.com/r-lib/pkgdown/issues/2704
R/utilities.R
chr_quoted.Rd
Add a quote around characters.
chr_quoted(chr, type = "`")
A character vector to add quotes in each element. (e.g. c("a", "b", "c")).
Character to be used as a quote. Default: '`'
A character vector with quotes added in each element. (e.g. c("`a`", "`b`", "`c`")).
DETAILS
chr_quoted(c("a","b", "c")) #> [1] "`a`" "`b`" "`c`"