Add an example for table
diff --git a/inst/rmarkdown/templates/revealjs_presentation/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/revealjs_presentation/skeleton/skeleton.Rmd
index bd61560..8f60ffb 100644
--- a/inst/rmarkdown/templates/revealjs_presentation/skeleton/skeleton.Rmd
+++ b/inst/rmarkdown/templates/revealjs_presentation/skeleton/skeleton.Rmd
@@ -22,6 +22,14 @@
summary(cars)
```
+# Slide with table
+
+```{r, echo = FALSE}
+knitr::kable(head(cars))
+```
+
+You can use any external R package **gt** or **flextable** to create beautiful tables.
+
# Slide with Plot
```{r, echo=FALSE}
@@ -129,4 +137,4 @@
output:
revealjs::revealjs_presentation:
background_transition: "zoom"
-```
+```
\ No newline at end of file