首先,感谢 Hexo。这是我的问题:
我在 Hexo 配置文件中设置post_asset_folder
为。true
然后我运行:
$ hexo new first
.
然后:
$ ls source/_posts/
第一/ first.md hello-world.md
我添加了一张名为pic.png
into的图片source/_posts/first
,并写了source/_posts/first.md
如下内容:
title: first
date: 2015-06-16 13:42:29
tags:
---
picture blow ^_^
![pic](first/pic.png)
然后:
$ hexo g
$ hexo s
我打开http://0.0.0.0:4000/
了,但是看不到内容pic.png
。
我检查了文件夹public/2015/06/16/first/
。public/2015/06/16/
我发现 folder和 folder之间存在一些差异source/_posts/
。
- 文件夹结构
public/2015/06/16/
.
└── public/2015/06/16/
├── first
│ ├── pic.png
│ └── first.md
└── hello-world
└── hello-world.md
- 文件夹结构
source/_posts/
.
└── source/_posts/
├── first
│ ├── first
│ │ └── pic.png
│ └── first.md
└── hello-world
└── hello-world.md
我怎样才能统一路径格式,我可以在markdowm
和中获得相同的路径index.html
。