Nothing
#' Return the RTF string for header columns
#'
#' This function relys on the package that the table originated from to create
#' a RTF string.
#'
#' @param doc \code{rtf_doc} object to return header string from.
#'
#' @return A RTF encoding string containing the header information
#' @noRd
get_column_headers <- function(doc) UseMethod('get_column_headers', object=doc$table)
#' @noRd
get_column_headers.huxtable <- function(doc) {
if(header_rows(doc) == 0) return("")
# Get the column header
col_headers <- doc$table[1:header_rows(doc$table), ]
if (needs_buffer(doc)){
col_headers <- insert_buffer(doc, col_headers)
}
# Now reset the font size to the default for all the NAs because default doesn't carry forward
cfs <- huxtable::font_size(col_headers)
cfs[is.na(cfs)] <- font_size(doc)
huxtable::font_size(col_headers) <- cfs
# For huxtable simply return the header rows of the table - turn off cell padding if specified
out <- huxtable::to_rtf(col_headers, fc_tables = huxtable::rtf_fc_tables(doc$table, extra_fonts = c("Times", font(doc))))
if (ignore_cell_padding(doc)) {
replace_cell_padding(out)
} else {
out
}
}
# #' @noRd
# get_column_headers.gt_tbl <- function(doc) {
# data <- gt:::build_data(doc$table, context='rtf')
# gt:::create_columns_component_r(data = data)
# }
#' Return the RTF string for the body of a table
#'
#' This function relys on the package that the table originated from to create
#' a RTF string.
#'
#' @param doc \code{rtf_doc} object to return header string from.
#'
#' @return A RTF encoding string containing the header information
#' @noRd
get_table_body <- function(doc) UseMethod('get_table_body', object=doc$table)
#' @noRd
get_table_body.huxtable <- function(doc) {
# For huxtable take everything after the header riws
start_row <- header_rows(doc$table) + 1
body <- doc$table[start_row:nrow(doc$table), ]
# Turn off cell padding if specified
out <- huxtable::to_rtf(body, fc_tables = huxtable::rtf_fc_tables(doc$table, extra_fonts = c("Times", font(doc))))
if (ignore_cell_padding(doc)) {
replace_cell_padding(out)
} else {
out
}
}
# #' @noRd
# get_table_body.gt_tbl <- function(doc) {
# data <- gt:::build_data(doc$table, context='rtf')
# gt:::create_body_component_r(data = data)
# }
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.