Let's say I have the following xaringan document:
---
title: "Test"
author:
- "me"
date: "2022-06-20"
output:
xaringan::moon_reader:
css: [default, ninjutsu]
seal: false
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
```{r table, tab.cap="Iris", echo=F, warning=F, message=F}
library(tidyverse)
library(flextable)
iris %>%
head() %>%
flextable() %>%
theme_booktabs()
```
which renders like this:
Now I wish to change the spacing between the flextable title and the table itself. What should I do?




