Adding support to ioslides_presentation and slidy_presentation
diff --git a/R/zzz.R b/R/zzz.R
index 982d9de..fcdac4b 100644
--- a/R/zzz.R
+++ b/R/zzz.R
@@ -18,4 +18,10 @@
   }
   auto_format <- getOption("kableExtra.auto_format", default = TRUE)
   if (auto_format) auto_set_format()
+  if (!is.null(rmarkdown::metadata$output) &&
+      rmarkdown::metadata$output %in% c(
+        "ioslides_presentation", "slidy_presentation"
+      )) {
+    options(kableExtra.html.bsTable = TRUE)
+  }
 }