Rmarkdown 交互文档 Bootswatch 主题颜色不正确

Rmarkdown Interactive documents Bootswatch theme colour incorrect

在使用 Flexdashboard 模板的 R markdown 中,Bootswatch 主题的颜色似乎与 Bootswatch 网站上显示的颜色不匹配

例如使用flatly主题

---
title: "Test Dashboard"
output: 
  flexdashboard::flex_dashboard:
    theme: flatly
runtime: shiny
---

我得到的是这样的: flatly theme in rmarkdown flexdashboard theme

Bootswatch 的 flatly 主题是这样的: 来自 Bootswatch

的 flatly 主题

是否需要指定一些设置才能获得正确的颜色?或者对于 Rmarkdown Bootswatch 主题设置为不同的外观?

添加以下JS块解决问题:

```{js}
$('.navbar-inverse').removeClass('navbar-inverse').addClass('navbar-
default');
```