post 的图像 header 未显示在 blogdown post 中
Image header for post doesn't display in blogdown post
我正在使用 blogdown
和 wowchemy-hugo
主题在 R 中创建一个网站。我已经创建了一个 post,但是我插入的图像由于某些奇怪的原因,YAML 没有出现在 header 中。我已将图像保存在 static\image\headers\gdp.jpg
下的文件夹中,我是否遗漏了什么?
---
title: "This is my title"
author: "This is my name"
date: 2020-09-10T21:13:14-05:00
tags: ["Tag1", "Tag2", "Tag3"]
header:
caption: 'Image Credit: [**AvaTrade**](https://www.avatrade.com/education/trading-for-beginners/gross-domestic-product)'
image: 'headers/gdp.jpg'
focal_point: ""
preview_only: false
output: html_document
---
TIA!
找出问题所在。图像需要保存在 static
内的 media
子文件夹中(而不是 image
下)。参见:https://wowchemy.com/docs/managing-content/
我正在使用 blogdown
和 wowchemy-hugo
主题在 R 中创建一个网站。我已经创建了一个 post,但是我插入的图像由于某些奇怪的原因,YAML 没有出现在 header 中。我已将图像保存在 static\image\headers\gdp.jpg
下的文件夹中,我是否遗漏了什么?
---
title: "This is my title"
author: "This is my name"
date: 2020-09-10T21:13:14-05:00
tags: ["Tag1", "Tag2", "Tag3"]
header:
caption: 'Image Credit: [**AvaTrade**](https://www.avatrade.com/education/trading-for-beginners/gross-domestic-product)'
image: 'headers/gdp.jpg'
focal_point: ""
preview_only: false
output: html_document
---
TIA!
找出问题所在。图像需要保存在 static
内的 media
子文件夹中(而不是 image
下)。参见:https://wowchemy.com/docs/managing-content/