在使用Flexdashboard模板的R markdown中,Bootswatch主题的颜色似乎与Bootswatch网站上显示的内容相匹配
例如,使用flatly
主题
---
title: "Test Dashboard"
output:
flexdashboard::flex_dashboard:
theme: flatly
runtime: shiny
---
我得到的是这样的: 在rmarkdown flexdashboard主题中的平面主题
Bootswatch的平面主题是这样的: 来自Bootswatch的平面主题
是否需要指定一些设置才能获得正确的颜色?或者对于Rmarkdown Bootswatch主题设置看起来有所不同?
答案 0 :(得分:3)
添加以下JS chunk解决了这个问题:
```{js}
$('.navbar-inverse').removeClass('navbar-inverse').addClass('navbar-
default');
```