在rmarkdown中,可以使用yaml文件为网站Web创建导航栏。官方文档是here。
我想知道是否可以在导航栏中添加动态文本和链接。
例如:
name: "my-website"
navbar:
title: "My Website"
type: inverse
left:
- text: "`r txt1`"
icon: fa-home
href: index.html
然后在rmd文件中,我可以指定
txt1= "Home"
在使用render_site
功能之前。