Hello Hexo
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 .
快速开始
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 |
More info: Deployment
进阶优化
新增文章时自动打开Markdown编辑器
需求:由于每次在使用
hexo n "文章名称"
时还要去打开编辑器,这太麻烦了!我们可以通过一个监听的js
代码去监听hexo
新建文章的命令,并自动打开相应的 Markdown编辑器来实现联动,这样岂不是即方便且优雅!
首先在
hexo/scripts
下新建一个editArticle.js
文件,如果没有scripts
文件可以手动创建一个。在
editArticle.js
文件并写入如下内容即可
1 | const { spawn } = require("child_process"); |
- 标题: Hello Hexo
- 作者: JiangWen
- 创建于 : 2022-09-28 11:45:00
- 更新于 : 2024-06-26 03:34:12
- 链接: https://blog.jiangwen.site/2022/09/28/Hexo/Hello Hexo/
- 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论