commit | 904d166ed7d63ea12443b0e1a90481085c13f660 | [log] [tgz] |
---|---|---|
author | Hao Zhu <haozhu233@gmail.com> | Wed Dec 23 23:47:22 2020 -0500 |
committer | GitHub <noreply@github.com> | Wed Dec 23 23:47:22 2020 -0500 |
tree | 2c4ff423ce1e20621dba5c04ce3d68859ad77d52 | |
parent | c3c96bb3c5213781d9db3ef66db5e64d52f1f213 [diff] | |
parent | 70404ee1e575001c2e1f3ebf1b1ec4e8fcde2ac7 [diff] |
Merge pull request #575 from gregmacfarlane/master Do not use HOLD position as float default, close #568
diff --git a/R/kable_styling.R b/R/kable_styling.R index d956656..0d41372 100644 --- a/R/kable_styling.R +++ b/R/kable_styling.R
@@ -547,7 +547,7 @@ "\n\\end{", table.envir, "}") if (hold_position == "hold_position") { x <- styling_latex_hold_position(x) - } else { + } else if(hold_position == "HOLD_position") { x <- styling_latex_HOLD_position(x) } }