Applies formatting to a gt table based on information extracted from the spreadsheet file.
Examples
if (FALSE) { # \dontrun{
sprdsht_data <- read_excel("yourpath/yourspreadsheet.xlsx")
gt_table <- gt::gt(sprdsht_data)
format_long <- get_formatting("yourpath/yourspreadsheet.xlsx")
format_ready <- translate_defs(format_long)
apply_styling(gt_table, format_ready)
} # }