Pretty straight forward issue here. My kables won't align to the left. Here's an example of my rmarkdown:
---
title: ""
output: pdf_document
classoption: landscape
---
#### This is a kable
```{r, echo=FALSE, fig.align='left'}
knitr::kable(head(mtcars))
```
#### This is a table
```{r, echo=FALSE, fig.align='left'}
head(mtcars)
```
Why is this happening? It should be simple to align a kable to the left but I can't seem to find anything useful.