shenliyang / hexo-theme-snippet

Snippet 简洁而不简单,也许是一款你寻找已久的hexo主题
https://snippet.shenliyang.com/
MIT License
1.09k stars 210 forks source link

img 加载 设置问题 #155

Closed s2339956 closed 4 years ago

s2339956 commented 4 years ago
---
title: Analysis .a static library
date: 2019-09-18 12:14:25
categories: ['iOS','app'] 
tags: ['iOS','app']       
comments: true 
img: source/images/Analysis_static_library/Analysis_static_library1.png
---

这是我文章中所设置的内容,img 出现无法载入图像问题,请问是我设置错误吗?

EscapeLife commented 4 years ago

@s2339956 你需要注意一下图片的相对路径地址,相对于source目录而言,比如source目录下创建一个images目录。使用如下所示:

---
title: xxx
comments: true
categories: xxx
tags: ssh
img: /images/aliyun-ssh-break.png
abbrlink: xxx
date: xxx
---
s2339956 commented 4 years ago

@s2339956 你需要注意一下图片的相对路径地址,相对于source目录而言,比如source目录下创建一个images目录。使用如下所示:

---
title: xxx
comments: true
categories: xxx
tags: ssh
img: /images/aliyun-ssh-break.png
abbrlink: xxx
date: xxx
---

谢谢,修正路径为 /images/Analysis_static_library/Analysis_static_library1.png,就能顺利载入了。 希望能在说明文档上加上去,避免发生跟我一样的问题~