Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

创建新文章

1
$ hexo new "学习笔记"

hexo插入图片

1.把主页配置文件_config.yml 里的post_asset_folder:这个选项设置为true。

2.在你的hexo目录下执行这样一句话npm install hexo-asset-image –save,这是下载安装一个可以上传本地图片的插件。

3.安装用于显示图片缩略图的插件

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

4.接着,新建文章的时候会有个同名的文件夹,想引入图片时,先把图片复制到这个文件夹中,然后只需要在.md中引入图片。

butterfly 教程

官方教程:https://butterfly.js.org/posts/ceeb73f/
优秀博客:https://www.antmoe.com/photo/wallpaper/(壁纸)
魔改博客:https://blog.csdn.net/u012208219/article/details/106883001/
教程:https://jerryc.me/posts/21cfbf15#%E9%83%A8%E7%BD%B2%E5%88%B0%E7%B6%B2%E7%AB%99
https://blog.csdn.net/cungudafa/article/details/105699384

More info: Deployment