R/refineFormatting.R

Defines functions refineFormatting

Documented in refineFormatting

#' refineFomatting
#'
#' Function to refine the width of the formatting row (i.e. the 2nd). It
#' contains information about alignment of the table columns.
#'
#' @param ce list of table cells as created by `beautifyR`
#' @param al alignment vector as created by `extractAlignment`
#' @keywords internal
#' @export
refineFormatting <- function(ce, al){
  ce[[2]][is.na(ce[[2]])] <- " "
  ce[[2]] <- gsub(".", "-", ce[[2]])
  ce[[2]][al == "l"] <- gsub("^-", ":", ce[[2]][al == "l"])
  ce[[2]][al == "c"] <- gsub("^-|-$", ":", ce[[2]][al == "c"])
  ce[[2]][al == "r"] <- gsub("-$", ":", ce[[2]][al == "r"])
  return(ce)
}
mwip/beautifyR documentation built on Oct. 23, 2022, 8:21 a.m.