I'm having some problems to control the width of a table created by pander library in R markdown script.
```{r echo = FALSE}
library(pander)
pander(head(iris), style = 'rmarkdown')
```
When I knit the document to a html, the table has the widht of the document, like this:
I would like to have a not so wide table, something like this:
Is it possible?
Thank you,
Bruno