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

时间:2017-10-12 13:45:39

标签: r shiny r-markdown flexdashboard bootswatch

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

例如,使用flatly主题

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

我得到的是这样的: 在rmarkdown flexdashboard主题中的平面主题

enter image description here

Bootswatch的平面主题是这样的: 来自Bootswatch的平面主题

enter image description here

是否需要指定一些设置才能获得正确的颜色?或者对于Rmarkdown Bootswatch主题设置看起来有所不同?

1 个答案:

答案 0 :(得分:3)

添加以下JS chunk解决了这个问题:

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