我正在使用 rmarkdown 创建一个 Ioslides_presentation。出于一个很好的理由,我已将 YAML 标头中的运行时选项从 shiny 更改为 shiny_prerendered。但是,我注意到这样做之后,输出不会在 YAML 标头中选择我的自定义 css 选项。
IE,这个 YAML 标头可以正常工作并且可以很好地提取 CSS。
title: "Transformers"
author: "StarScream"
runtime: shiny
output:
ioslides_presentation:
incremental: true
widescreen: true
css: foo.css
logo: Decepticons.png
self_contained: false
但是这个 YAML 标头不会获取 css(在更改运行时之后)。
title: "Transformers"
author: "StarScream"
runtime: shiny_prerendered
output:
ioslides_presentation:
incremental: true
widescreen: true
css: foo.css
logo: Decepticons.png
self_contained: false
有人可以帮我解决这个问题吗?