这篇文章记录一下 Blog 的一些使用指南:
source/_posts:里面放的就是文章,要写文章就加一篇上去;
文章的分类和标签在上面加上去就行;
操作流程
全部改完之后,在 Blog 文件夹打开 git bash,执行下面命令:
hexo clean
hexo g
hexo d
hexo cl && hexo g && hexo d
插入图片
首先在 _config.yml 配置文件里面的这个:
post_asset_folder: false
这个一定要为 false,之前不小心设置为 true 了,然后就一直插入失败…
语法:
md 语法:
1
2
3![](/images/使用指南/1.png)
![](images/使用指南/1.png)html 语法:
1
<img src="/images/使用指南/1.png">
images 文件夹是在 source 下面自己创建的!
路径名好像不能有空格。