我正在尝试按照Jekyll文档进行操作,并坚持如何显示图像
---
layout: post
title: "My first post!"
date: 2016-10-20 16:17:57 +0200
categories: jekyll update
regenerate: true
---
This is in the `_posts` directory.
It can be edited then rebuild the site to see the changes.
You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
![name of the image][{{site.url}}/assets/P6740674.JPG]
我觉得这个问题非常愚蠢,因为它是如此基本,但我找不到任何问题的答案
可能是我自己系统上的配置错误。我正在使用apache2,ruby gems等
提前致谢
答案 0 :(得分:12)
如果您要使用site.url
,则必须在url
文件中添加_config.yml
变量。 Jekyll documentation。
但您可能根本不必使用site.url
。任何以/
斜杠开头的网址都将相对于您网域的顶级网址。所以你可以这样做:
![image tooltip here](/assets/image.jpg)
答案 1 :(得分:0)
我可以看到默认情况下在images
下创建的assets
目录。我将图像放置如下。
assets/images/myimage.jpg
并在帖子中添加以下行。
![My image Name](/assets/images/myimage.jpg)
运行bundle exec jekyll serve
,看是否有任何错误。如果您提到文件位置不匹配,则会在此处看到错误。