R/nice_table_html_short.R

Defines functions nice_table_html_short

Documented in nice_table_html_short

#' @title nice_table_html_short
#'
#' @param table
#' @param height
#'
#' @return
#' @export
#' @import kableExtra
#' @examples
nice_table_html_short <- function(table, height = "200px") {
  nice_table(table) %>%
    scroll_box(height = height, width = "100%")
}
epongpipat/eepR documentation built on June 5, 2024, 10:03 a.m.