摘要:利用typora来对hexo的博客进行编写,同时保证上传github时图片能够显示。
配置hexo
配置
post_asset_folder
参数:cd到博客根目录下 查看_config.yml文件 查找 post_asset_folder 字段确定post_asset_folder设置为true。
1
post_asset_folder:true
安装插件:
到博客的根目录下执行:
1
npm install https://github.com/CodeFalling/hexo-asset-image --save
效果:
然后创建文章 hexo new “test”时,会在/source/_posts 目录下创建一个test 文件夹 和 test.md 文件。
修改post.md:
在博客根目录的scaffolds->post.md文件中,增加配置:
1
typora-copy-images-to: {{ title }}
这样在typora中插入图片的时候会自动保存到/source/_posts 目录下同名的文件件夹下。最后再推送到远程即可。
- 本文作者: 随风而行
- 本文链接: http://yoursite.com/2020/02/16/typora编写hexo博客时的图片显示/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!