Closed jhchou closed 11 months ago
I believe if you set the option "summ-normal-print"
to TRUE
, you should get equivalent output as if you didn't have kableExtra
installed.
So sticking this code somewhere should fix it, if I'm not mistaken:
options("summ-normal-print", TRUE)
I installed
jtools
to display logistic regression model output fromglm
in a Quartorevealjs
presentation. The initialsumm()
output was the "plain text" version.I then installed
kableExtra
and thesumm()
output was prettified, but took up too much space.I tried using the chunk option
{r, render='normal_print'}
, but the output remained prettified.I also tried setting
knitr
global chunk options as in your repo:... also unsuccessfully at getting back to plain text output. Am I doing something wrong?