I am using knitr
to create a HTML webpage. The default setting seems to be 800px but I need a larger page size of 1100px
body {
max-width: 800px;
margin: auto;
padding: 1em;
line-height: 20px ;
}
I have tried:
library("markdown")
library("knitr")
knit2html("test.Rmd",options = c(width=1100))
But this still gives me the smaller page size of 800px
How can I set the code for the HTML page width?