I'm trying to include kableExtra table in my ioslides in RStudio. I get the tables correctly, however simple formatting from the vignette examples seems to be gone.
---
title: "Tables"
output:
ioslides_presentation: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(knitr)
library(kableExtra)
dt <- mtcars[1:5, 1:6]
```
## No styling
```{r t1}
dt %>%
kable("html")
```
## Styling
```{r t2}
dt %>%
kable("html") %>%
kable_styling(bootstrap_options = c("striped", "condensed", full_width = F, position = "center"))
```
Any ideas what I'm missing?
ioslidestemplate to suit your needs or just the CSS you require for your tables.webshotas in this approach to make your table an image if building the CSS or pandoc template are too involved for you.webshotexample but will report back if I have some progress.