命令汇总
安装hexo
npm isntall hexo -g
hexo版本确认
hexo -v
初始化hexo文件夹
hexo init
安装必要组件
hexo install
新建md文件
hexo new filename
部署远程环境
hexo g
启动本地服务
hexo s
更改本地端口号
hexo server -p 3000
安装生成文章扩展插件
npm install hexo-deployer-git --save
生成文章及部署远程环境
hexo d -g
引擎功能的安装
在Hexo的根目录下,打开命令可执行窗口,执行如下命令
npm install hexo-generator-searchdb --save
全局配置文件_config.yml,新增如下内容
search:
path: search.xml
field: post
format: html
limit: 10000
.hexo主题配置文件(如\themes\next_config.yml),修改local_search的enable为true:
# Local search
# Dependencies: https://github.com/flashlab/hexo-generator-search
local_search:
enable: true
# if auto, trigger search by changing input
# if manual, trigger search by pressing enter key or search button
trigger: auto
# show top n results per article, show all results by setting to -1
top_n_per_article: 1
主题文件说明
修改主题需要寻找主题整体布局,查看layout文件