常用命令汇总
命令 | 简写 | 作用 |
---|---|---|
hexo deploy | hexo d | 部署到github等 |
hexo server | hexo s | 开启服务器, –debug 开启调试模式 |
hexo clean | 清楚缓存文件及静态文件 | |
hexo generate | hexo g | 生成静态网页, -f 等同于 hexo clean && hexo g ;-d 等同于 hexo g && hexo d |
hexo new “new file title” | 创建新文章,若题目中无空格,可省去双引号 | |
hexo new page tags | 在source 创建tags 文件夹,且生成index.md 的文章 |
注意:可以做个命令统计脚本,根据使用频次排序上述命令。
本地资料备份
已在github添加hexo
分支,本地资料push
到hexo
分支,hexo部署由hexo d
自动推送到master
分支。
1 | git push origin hexo |
安装 hexo
1 | npm install hexo-cli -g |
更换NexT 主题
1 | cd blog |
修改配置文件
打开_config.yml:
修改主题一行为:
1 | theme: next |
写文章
1 | hexo new [layout] <title> |
默认layout使用 _config.yml 中的 default_layout 参数
若标题中包含空格,请使用引号括起来。
1 | hexo new page --path about/me "About me" # 自定义新文章路径 |
举例
1 | hexo new first.md |
编辑first.md文件即可
本地启动服务器
1 | hexo server |
默认网址:![http://localhost:4000/]
-p 重设端口号
-s 只使用静态文件
部署到github
安装 github部署工具
1
npm install hexo-deployer-git --save
修改_config.yml
1
2
3deploy:
type: git
repo: https://github.com/Narglc/Narglc.github.io部署到github
1
2
3hexo deploy
# 可简写为:
hexo d
generate vs deploy
1 | hexo generate # 生成静态文件 |
hexo g 仅仅生成静态文件,用于本地部署;hexo d 可推送到github部署
clean
1 | hexo clean #清除缓存文件 (db.json) 和已生成的静态文件 (public)。 |
代码高亮样式
1 | # normal | night | night eighties | night blue | night bright # 5种可用 |
添加阅读全文按钮 [暂未开启]
只显示文章一部分,多余的需要点击阅读全文来查看,需要在文章中添加
1 | <!--more--> |
设置网站缩略图标
修改站点配置文件_config.yml中small、medium、apple_touch_icon对应图片地址:
1 | favicon: |
本地搜索功能
安装 hexo-generator-searchdb 插件
1 | npm install hexo-generator-searchdb --save |
修改next主题配置文件_config.yml:
1 | local_search: |
站点配置文件_config.yml的Extensions
后添加:
1 | search: |
侧边栏社交链接
修改next主题配置文件_config.yml:
1 | social: |
注意: || 前面是链接地址,后面是FontAwsone
字符库的图标名
打赏
修改站点配置文件_config.yml:
1 | # Reward |
文章末尾添加版权信息
实现
手动修改主题目录下的 layout/_macro/post.swig 文件,找到 post-footer 标签,添加以下内容div内代码段:
即,将div内代码段插入footer标签开始处。
1 | <footer class="post-footer"> |
添加显示格式
修改主题目录下的 source/css/_custom/custom.styl 文件:
1 | .post-copyright { |
站点访问计数
使用不蒜子脚本实现计数
新实现
Next
主题在版本6.0以上已经内置了不蒜子访客统计的代码,修改主题配置文件_config.yml即可
1 | busuanzi_count: |