如何在 .Rmd 文件中为 post 添加功能或缩略图
How to add feature or thumbnail image for post in .Rmd file
我目前正在尝试使用 blogdown 设置一个 hugo 博客,但找不到从 .Rmd
文件中向帖子添加功能或缩略图的方法,这需要 tranquilpeak theme:
据我了解,在 .md 文件中只需添加如下语法即可轻松实现:
+++
featuredImage = "img/foobar.jpg"
+++
我在 minos theme and in a discourse post 中找到了这个。但是如何在 .Rmd
文件中执行此操作?
使用.md或.Rmd并不重要:如果主题支持featuredImage
选项,您也可以在.Rmd中使用。如果 post 格式为 .Rmd (see documentation),即
,您唯一需要确保的是在 YAML 而不是 TOML 中写入元数据
---
featuredImage: "img/foobar.jpg"
---
一个选项是将 .Rmd
文件名更改为 index.Rmd
并使用页面文件夹中的 featured.png/jpg
图片。
适合我。
我目前正在尝试使用 blogdown 设置一个 hugo 博客,但找不到从 .Rmd
文件中向帖子添加功能或缩略图的方法,这需要 tranquilpeak theme:
据我了解,在 .md 文件中只需添加如下语法即可轻松实现:
+++
featuredImage = "img/foobar.jpg"
+++
我在 minos theme and in a discourse post 中找到了这个。但是如何在 .Rmd
文件中执行此操作?
使用.md或.Rmd并不重要:如果主题支持featuredImage
选项,您也可以在.Rmd中使用。如果 post 格式为 .Rmd (see documentation),即
---
featuredImage: "img/foobar.jpg"
---
一个选项是将 .Rmd
文件名更改为 index.Rmd
并使用页面文件夹中的 featured.png/jpg
图片。
适合我。