Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 1 | #' Add footnote |
| 2 | #' |
Hao Zhu | e7c8f70 | 2017-10-10 13:22:59 -0400 | [diff] [blame] | 3 | #' @description Add footnote to your favorite kable output. |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 4 | #' |
| 5 | #' @param input The direct output of your \code{kable} function or your last |
| 6 | #' \code{kableExtra} function. |
| 7 | #' @param label A vector of footnotes you want to add. You don't need to add |
| 8 | #' notations in your notes. |
| 9 | #' @param notation You can select the format of your footnote notation from |
Hao Zhu | b8b0cae | 2018-04-11 16:27:13 -0400 | [diff] [blame] | 10 | #' `number`, `alphabet`, `symbol` and `none`. |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 11 | #' @param threeparttable Boolean value indicating if a |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 12 | #' \href{https://www.ctan.org/pkg/threeparttable}{threeparttable} scheme should |
| 13 | #' be used. |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 14 | #' @param escape Logical value controlling if the label needs to be escaped. |
| 15 | #' Default is TRUE. |
Hao Zhu | 78e6122 | 2017-05-24 20:53:35 -0400 | [diff] [blame] | 16 | #' |
| 17 | #' @examples x <- knitr::kable(head(mtcars), "html") |
| 18 | #' add_footnote(x, c("footnote 1", "footnote 2"), notation = "symbol") |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 19 | #' |
| 20 | #' @export |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 21 | add_footnote <- function(input, label = NULL, |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 22 | notation = "alphabet", |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 23 | threeparttable = FALSE, |
| 24 | escape = TRUE) { |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 25 | if (is.null(label)) return(input) |
Hao Zhu | 8977a8a | 2015-11-19 16:52:21 -0500 | [diff] [blame] | 26 | |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 27 | if (notation == "alphabet") { |
| 28 | notation <- getOption("kable_footnote_notation", "alphabet") |
| 29 | } |
| 30 | if (!threeparttable) { |
| 31 | threeparttable <- getOption("kable_footnote_threeparttable", FALSE) |
| 32 | } |
| 33 | |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 34 | table_info <- NULL |
| 35 | |
Hao Zhu | b8b0cae | 2018-04-11 16:27:13 -0400 | [diff] [blame] | 36 | notation <- match.arg(notation, c("alphabet", "number", "symbol", "none")) |
| 37 | if (notation == "none") { |
| 38 | ids <- rep("", 20) |
| 39 | ids.intable <- ids |
| 40 | } else { |
| 41 | if (notation == "symbol") { |
| 42 | notation <- paste0(notation, ".", attr(input, "format")) |
| 43 | } |
| 44 | |
| 45 | ids.ops <- read.csv(system.file("symbol_index.csv", package = "kableExtra")) |
| 46 | ids <- ids.ops[, notation] |
| 47 | ids.intable <- gsub("\\*", "\\\\*", ids) |
| 48 | } |
| 49 | |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 50 | |
| 51 | #count the number of items in label and intable notation |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 52 | count.label <- length(label) |
| 53 | count.intablenote <- sum(str_count(input, "\\[note\\]")) |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 54 | if (count.intablenote != 0 & count.label != count.intablenote) { |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 55 | warning(paste("You entered", count.label, "labels but you put", |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 56 | count.intablenote, "[note] in your table.")) |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 57 | } |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 58 | |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 59 | export <- input |
| 60 | |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 61 | # Find out if there are any extra in-table notations needed to be corrected |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 62 | extra.notation <- unique(as.numeric( |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 63 | str_extract( |
| 64 | str_extract_all( |
| 65 | paste0(export, collapse = ""), "\\[note[0-9]{1,2}\\]" |
| 66 | )[[1]], |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 67 | "[0-9]{1,2}"))) |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 68 | |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 69 | # Pandoc --------------------------- |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 70 | # Footnote solution for markdown and pandoc. It is not perfect as |
| 71 | # markdown doesn't support complex table formats but this solution |
| 72 | # should be able to satisfy people who don't want to spend extra |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 73 | # time to define their `kable` format. |
| 74 | if (!attr(input, "format") %in% c("html", "latex")) { |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 75 | # In table notation |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 76 | if (count.intablenote != 0) { |
| 77 | for (i in 1:count.intablenote) { |
| 78 | replace_note <- paste0("^", ids.intable[i], "^", |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 79 | paste0(rep(" ", 4 - ceiling(i/5)), collapse = "")) |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 80 | |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 81 | export[which(str_detect(export, "\\[note\\]"))[1]] <- |
Hao Zhu | e10cfd3 | 2017-02-21 16:41:14 -0500 | [diff] [blame] | 82 | sub("\\[note\\]", replace_note, |
| 83 | export[which(str_detect(export, "\\[note\\]"))[1]]) |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 84 | } |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 85 | } |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 86 | # Fix extra in table notation |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 87 | for (i in extra.notation) { |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 88 | export <- gsub(paste0("\\[note", i, "\\]"), |
| 89 | paste0("^", ids.intable[i], "^", |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 90 | paste0(rep(" ", 4 - ceiling(i/5)), collapse = "")), |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 91 | export) |
| 92 | } |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 93 | |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 94 | export[length(export) + 1] <- "" |
| 95 | export[length(export) + 1] <- "__Note:__" |
| 96 | export[length(export) + 1] <- paste0( |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 97 | paste0("^", ids[1:length(label)], "^ ", label), collapse = " " |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 98 | ) |
| 99 | } |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 100 | |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 101 | # LaTeX Tables -------------------------------- |
| 102 | if (attr(input, "format") == "latex") { |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 103 | # Clean the entry for labels |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 104 | if (escape) { |
| 105 | label <- escape_latex(label) |
Hao Zhu | 1aff734 | 2018-04-02 18:33:15 -0400 | [diff] [blame] | 106 | label <- linebreak(label) |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 107 | } |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 108 | label <- gsub("\\\\", "\\\\\\\\", label) |
Hao Zhu | 8977a8a | 2015-11-19 16:52:21 -0500 | [diff] [blame] | 109 | |
Hao Zhu | 904c0dc | 2018-04-04 16:14:32 -0400 | [diff] [blame] | 110 | export <- enc2utf8(export) |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 111 | table_info <- magic_mirror(input) |
| 112 | if (table_info$tabular == "longtable") { |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 113 | if (notation != "number") { |
| 114 | warning("Notation is set to 'number' and other formats are not supported.") |
| 115 | notation <- "number" |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 116 | } |
| 117 | # If longtable is used, then use page footnote instead of threeparttable |
| 118 | # as it makes more sense to see the footnote at the bottom of page if |
| 119 | # table is longer than one page. |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 120 | if (threeparttable == T) { |
| 121 | warning("Threeparttable does not support longtable.") |
| 122 | threeparttable = F |
| 123 | } |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 124 | |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 125 | # Longtable doesn't support footnote in caption directly. |
| 126 | # See http://tex.stackexchange.com/questions/50151/footnotes-in-longtable-captions |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 127 | |
| 128 | count.in.caption.note <- 0 |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 129 | if (!is.na(table_info$caption)) { |
| 130 | count.in.caption.note <- str_count(table_info$caption, "\\[note\\]") |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 131 | } |
| 132 | if (count.in.caption.note != 0) { |
| 133 | caption.footnote <- paste0("\\\\addtocounter{footnote}{-", |
| 134 | count.in.caption.note, "}") |
| 135 | for (i in 1:count.in.caption.note) { |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 136 | export <- sub("\\[note\\]", "\\\\protect\\\\footnotemark ", export) |
| 137 | caption.footnote <- paste0( |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 138 | caption.footnote, "\n\\\\stepcounter{footnote}\\\\footnotetext{", |
| 139 | label[i], "}") |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 140 | } |
| 141 | |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 142 | if (str_detect(export, "\\\\toprule")) { |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 143 | export <- sub("\\\\toprule", |
| 144 | paste0("\\\\toprule\n", caption.footnote), export) |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 145 | } else { |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 146 | export <- sub("\\\\hline", |
| 147 | paste0("\\\\hline\n", caption.footnote), export) |
| 148 | } |
| 149 | } |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 150 | for (i in (count.in.caption.note + 1):count.intablenote) { |
Hao Zhu | 4adea85 | 2015-11-16 16:38:34 -0500 | [diff] [blame] | 151 | export <- sub("\\[note\\]", |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 152 | paste0("\\\\footnote[", i, "]{", label[i], "}"), export) |
| 153 | } |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 154 | for (i in extra.notation) { |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 155 | export <- gsub(paste0("\\[note", i, "\\]"), |
| 156 | paste0("\\\\footnotemark[", i, "]"), |
| 157 | export) |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 158 | } |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 159 | } else { |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 160 | # Replace in-table notation with appropriate symbol |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 161 | for (i in 1:count.intablenote) { |
| 162 | export <- sub("\\[note\\]", |
| 163 | paste0("\\\\textsuperscript{", ids.intable[i], "}"), |
| 164 | export) |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 165 | } |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 166 | |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 167 | # Fix extra in table notation |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 168 | for (i in extra.notation) { |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 169 | export <- gsub(paste0("\\[note", i, "\\]"), |
| 170 | paste0("\\\\textsuperscript{", ids.intable[i], "}"), |
| 171 | export) |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 172 | } |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 173 | if (threeparttable == T) { |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 174 | # generate footer with appropriate symbol |
Hao Zhu | f7994dd | 2017-02-27 16:58:42 -0500 | [diff] [blame] | 175 | usepackage_latex("threeparttable") |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 176 | footer <- "" |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 177 | for (i in 1:count.label) { |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 178 | footer <- paste0(footer,"\\\\item [", ids[i], "] ", label[i], "\n") |
| 179 | } |
| 180 | |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 181 | if (grepl("\\\\caption\\{.*?\\}", export)) { |
| 182 | export <- sub("\\\\caption\\{", |
| 183 | "\\\\begin{threeparttable}\n\\\\caption{", |
| 184 | export) |
| 185 | } else { |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 186 | export <- sub(paste0("\\\\begin\\{", table_info$tabular, "\\}"), |
| 187 | paste0("\\\\begin{threeparttable}\n\\\\begin{", |
| 188 | table_info$tabular, "}"), |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 189 | export) |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 190 | } |
| 191 | export <- gsub( |
| 192 | "\\\\end\\{tabular\\}", |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 193 | paste0("\\\\end{tabular}\n\\\\begin{tablenotes}\n\\\\small\n", |
| 194 | footer, "\\\\end{tablenotes}\n\\\\end{threeparttable}"), |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 195 | export) |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 196 | } else { |
| 197 | table.width <- max(nchar( |
| 198 | str_replace_all( |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 199 | str_replace_all(table_info$contents, "\\[note\\]", ""), |
| 200 | "\\[note[0-9]{1,2}\\]", ""))) + 2 * (table_info$ncol - 1) |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 201 | footer <- "" |
| 202 | for (i in 1:count.label) { |
| 203 | label.wrap <- strwrap(label[i], table.width) |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 204 | footer <- paste0(footer, "\\\\multicolumn{", table_info$ncol, |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 205 | "}{l}{\\\\textsuperscript{", ids[i], "} ", |
| 206 | label.wrap[1], "}\\\\\\\\\n") |
| 207 | if (length(label.wrap) > 1) { |
| 208 | for (j in 2:length(label.wrap)) { |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 209 | footer <- paste0(footer, "\\\\multicolumn{", table_info$ncol, |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 210 | "}{l}{", label.wrap[j], "}\\\\\\\\\n") |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 211 | } |
| 212 | } |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 213 | } |
Hao Zhu | 9f91748 | 2018-01-08 18:09:33 -0500 | [diff] [blame] | 214 | export <- gsub(table_info$end_tabular, |
| 215 | paste0(footer, "\\\\end{", table_info$tabular, "}"), |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 216 | export) |
Hao Zhu | dc4b714 | 2015-11-19 10:37:53 -0500 | [diff] [blame] | 217 | } |
Hao Zhu | db04e30 | 2015-11-15 16:57:38 -0500 | [diff] [blame] | 218 | } |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 219 | } |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 220 | |
| 221 | # HTML Tables ------------------- |
| 222 | if (attr(input, "format") == "html") { |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 223 | # Clean the entry for labels |
Hao Zhu | 9b45a18 | 2017-02-27 18:17:46 -0500 | [diff] [blame] | 224 | table_info <- magic_mirror(input) |
Hao Zhu | 245931c | 2017-09-01 22:43:56 -0400 | [diff] [blame] | 225 | if (escape) { |
| 226 | label <- escape_html(label) |
| 227 | } |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 228 | # Replace in-table notation with appropriate symbol |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 229 | for (i in 1:count.intablenote) { |
| 230 | export <- sub("\\[note\\]", |
| 231 | paste0("<sup>", ids.intable[i], "</sup>"), |
| 232 | export) |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | # Fix extra in table notation |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 236 | for (i in extra.notation) { |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 237 | export <- gsub(paste0("\\[note", i, "\\]"), |
| 238 | paste0("<sup>", ids.intable[i], "</sup>"), |
| 239 | export) |
| 240 | } |
| 241 | |
| 242 | # Build footer |
| 243 | footer <- "<tfoot>\n" |
Hao Zhu | c541563 | 2017-02-21 17:16:13 -0500 | [diff] [blame] | 244 | for (i in 1:count.label) { |
Hao Zhu | 2203f66 | 2015-11-20 11:53:39 -0500 | [diff] [blame] | 245 | footer <- paste0(footer, "<tr>\n<td style = 'padding: 0; border:0;' ", |
| 246 | "colspan='100%'><sup>", ids[i],"</sup> ", |
| 247 | label[i], "</td>\n</tr>\n") |
| 248 | } |
| 249 | footer <- paste0(footer, "</tfoot>\n") |
| 250 | |
| 251 | # Paste footer to the table |
| 252 | export[1] <- gsub("</tbody>\n", paste0("</tbody>\n", footer), export[1]) |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 253 | } |
Hao Zhu | 32f43f7 | 2017-06-20 18:24:54 -0400 | [diff] [blame] | 254 | attr(export, "kable_meta") <- table_info |
Hao Zhu | b1bc0aa | 2015-11-12 11:23:42 -0500 | [diff] [blame] | 255 | return(export) |
| 256 | } |