R/medley_mls.R

Defines functions medley_mls

Documented in medley_mls

#' @name medley_mls
#' @title Table Formatting for MLS Tables
#' 
#' @description Applies pixiedust formatting to tables in the UI
#' 
#' @export

medley_mls <- function(x)
{
  x %>%
  pixiedust::sprinkle(bg_pattern = c("#FFFFFF", "#E5E4E2"),
                      border_color = "#848482") %>%
  pixiedust::sprinkle(bg = "#E5E4E2", part = "head") %>%
  pixiedust::sprinkle_table(halign = "left",
                            pad = 3) %>%
  pixiedust::sprinkle_print_method("html")
}
nutterb/ldsmls documentation built on May 24, 2019, 10:52 a.m.