Nothing
#' Make linebreak in LaTeX Table cells
#'
#' @description This function generates LaTeX code of `makecell` so that users
#' can have linebreaks in their table
#'
#' @param x A character vector
#' @param align Choose from "l", "c" or "r". Defaults to "l".
#' @param double_escape Whether special character should be double escaped.
#' Default is FALSE.
#' @param linebreaker Symbol for linebreaks to replace. Default is `\n`.
#'
#' @export
linebreak <- function(x, align = c("l", "c", "r"), double_escape = F,
linebreaker = "\n") {
if (is.numeric(x) | is.logical(x)) return(x)
x <- as.character(x)
if (missing(align))
align <- "l"
align <- vapply(align, match.arg, 'a', choices = c("l", "c", "r"))
if (double_escape) {
ifelse(str_detect(x, linebreaker),
paste0("\\\\makecell[", align, "]{",
str_replace_all(x, linebreaker, "\\\\\\\\\\\\\\\\"), "}"),
x)
} else {
ifelse(str_detect(x, linebreaker),
paste0("\\makecell[", align, "]{",
str_replace_all(x, linebreaker, "\\\\\\\\"), "}"),
x)
}
}
linebreak_html <- function(x) {
if (is.numeric(x) | is.logical(x)) return(x)
ifelse(str_detect(x, "\n"), str_replace_all(x, "\n", "<br />"), x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.