Insert HTML tables in knitr documents in R
I have a number of different HTML files that contain formatted tables which I would like to combine in a knitr report in R. Unfortunately, I have some issues in loading the HTML files into R and including the tables in my knitr report. The HTML files were created using the "save as htm" function in MS Excel and the stargazer library. They display flawlessly in any browser. My code is: ```{r, echo=FALSE, return='asis'} library(XML) overview.html <- htmlParse("overview.htm") print(overview.html) ``` When printing "overview html" in the console I get the correct html code. However, when kniting