小编典典

在 Markdown Jekyll 中使用图片标题

all

我在 Github 上托管一个 Jekyll 博客,并用 Markdown 写我的帖子。当我添加图像时,我按以下方式进行:

![name of the image](http://link.com/image.jpg)

然后在文本中显示图像。

但是,我如何告诉 Markdown 添加显示在图像下方或上方的标题?


阅读 55

收藏
2022-06-29

共1个答案

小编典典

如果您不想使用任何插件(这意味着您可以直接将其推送到
GitHub,而无需先生成站点),您可以创建一个名为image.htmlin的新文件_includes

<figure class="image">
  <img src="{{ include.url }}" alt="{{ include.description }}">
  <figcaption>{{ include.description }}</figcaption>
</figure>

然后显示您的降价中的图像:

{% include image.html url="/images/my-cat.jpg" description="My cat, Robert Downey Jr." %}
2022-06-29