commit | 8f202994acfb89c662e53f5a26274277d511b110 | [log] [tgz] |
---|---|---|
author | Hao Zhu <haozhu233@gmail.com> | Sat Jul 15 02:20:18 2017 -0400 |
committer | Hao Zhu <haozhu233@gmail.com> | Sat Jul 15 02:20:18 2017 -0400 |
tree | b247b47640b1eec559165073180c271a0e45846d | |
parent | 501fb45f408204983ab5ec0801de7bcc6e1749be [diff] [blame] |
- Fix a bug in collapse_row on removing addlinespace - remove addlinespace from group_rows - add monospace to column_spec
diff --git a/R/group_rows.R b/R/group_rows.R index 7b2ad33..c38aaae 100644 --- a/R/group_rows.R +++ b/R/group_rows.R
@@ -98,6 +98,7 @@ ) } out <- sub(rowtext, new_rowtext, out) + out <- gsub("\\\\addlinespace\n", "", out) table_info$group_rows_used <- TRUE attr(out, "kable_meta") <- table_info out <- add_indent(out, seq(start_row, end_row))