commit | da886994b59985bf8ab77c1c5fa7845bb0c21a53 | [log] [tgz] |
---|---|---|
author | Hao Zhu <haozhu233@gmail.com> | Mon Jan 07 17:29:44 2019 -0500 |
committer | Hao Zhu <haozhu233@gmail.com> | Mon Jan 07 17:29:44 2019 -0500 |
tree | cbef74c3248d54f6a09f442acd1ef909970f9831 | |
parent | 8902df82e21e4a8455d76aa999f83980e147efec [diff] [blame] |
Fix #322
diff --git a/R/util.R b/R/util.R index 2d91900..fb83abe 100644 --- a/R/util.R +++ b/R/util.R
@@ -45,7 +45,7 @@ } latex_row_cells <- function(x) { - out <- unlist(strsplit(x, " \\& ")) + out <- strsplit(x, " \\& ") if (substr(x, nchar(x) - 2, nchar(x)) == " & ") { out <- c(out, "") }