I have several R Markdown pages that are suddenly displaying the HTML code rather than the resulting table in my rmd page. They were working fine yesterday. Earlier this week I upgraded R to the latest version. And today my company ran a major Windows upgrade. It showed up after the Windows upgrade.
All of the problematic code chunks look something like this:
arrest_rate %>% select(ArrestRate) %>% kable("html") %>% kable_styling()
The nice-looking tables show up in the viewer in RStudio, but not inline with the code like they used to. Instead there is HTML in the inline spot.
If I knit the page, the HTML page looks perfectly fine.
FYI..I'm a newbie at all this -- less than six months into using R and only about a month into using R Markdown and kable.
Any thoughts on how to fix this?
thanks,
mjwebster