我还想包含涵盖内联代码的外部降价文件。一旦我在 RStudio 上点击 Knit,它确实只显示代码文本而不是 sys.time 的实际值。如果我将 about.md 的内容放入 main.Rmd 中,则没有问题。该点应该与 includeMarkdown 相关,但它不接受除路径之外的任何参数。有什么建议么 ?提前致谢
主文件
---
title: "test"
author: "test"
output:
flexdashboard::flex_dashboard:
orientation: rows
social: menu
vertical_layout: fill
---
```{r}
htmltools::includeMarkdown('about.md')
```
关于.md
Today is `r format(Sys.time(), "%d %B %A %Y")`
电流输出
Today is r format(Sys.time(), "%d %B %A %Y")