I've been using rmarkdown and knitr to create html output. Quite suddenly, the {.tabset}
function seems to have stopped working when knitting, and documents render as they would without this option.
Here is a simple example that does not work as it should on my system.
---
title: "Plot Tabs"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
## Title {.tabset .tabset-fade .tabset-pills}
### tab 1
```{r}
plot(cars)
```
### tab 2
```{r}
plot(pressure)
```
I've tested this on another system, and it works fine. I've also reinstalled R and updated all my packages as well as RStudio.
Does anyone know of any similar issues, or anything that could be causing the problem?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…