R Markdown, output test results (htest) when chunk option results=“asis”
问题 I need to use results = "asis" for reasons stated here: https://stackoverflow.com/a/36381976/ However, using that chunk option means other outputs render non-ideally. Specifically I'm having issues outputting prop.test results, but I'm sure this would happen for other data types. I've provided 4 options in the example below, all of which fall short in some way: --- title: "R Notebook" output: html_document: df_print: paged --- ```{r, echo=F, message=F, warning=F, results="asis"} library(knitr