Hexo搭建静态博客

问题解决链接汇总

  1. 代码高亮不显示{}
1
https://blog.csdn.net/xingranzhihuo/article/details/113830311

创建文章

1
hexo new 文件名
  • 在source文件夹下的_posts文件夹下创建了.md文档

显示图片

1、安装图片路径转换插件 hexo-asset-image

1
npmpm install https://github.com/CodeFalling/hexo-asset-image --save

2、在根目录下修改配置文件_config.yml中的post_asset_folder:false改为true

3、插入图片时使用如下方式:

1
{% asset_img test.jpg This is an test image %}
  • test.jpg:图片名称
  • This is an test image:图片描述