add all_cols to add_indent
diff --git a/R/dummy_table.R b/R/dummy_table.R
new file mode 100644
index 0000000..4c0831d
--- /dev/null
+++ b/R/dummy_table.R
@@ -0,0 +1,15 @@
+#' Dummy html table for testing
+#' @description Create dummy table for testing in kE
+#' @export
+dummy_html_tbl <- function() {
+ return(kable_styling(kable(mtcars[1:5, 1:5], "html",
+ align = c("l", "l", rep("r", 4)))))
+}
+
+#' Dummy latex table for testing
+#' @description Create dummy table for testing in kE
+#' @export
+dummy_latex_tbl <- function(booktabs = T) {
+ return(kable_styling(kable(mtcars[1:5, 1:5], "latex", booktabs = booktabs,
+ align = c("l", "l", rep("r", 4)))))
+}