hexo相关配置和安装
一、安装hexo相关模块
安装hexo脚手架
npm install -g hexo-cli
成功之后我们就可以通过下面的命令进行初始化了
hexo init
安装yarn
npm install -g yarn
初始化后需要安装相关依赖
yarn
二、配置hexo
修改_config.yml
skip_render: README.md
deploy:
type: git
repo: https://github.com/vcharfred/vcharfred.github.io.git
branch: master
skip_render是配置忽略的文件
md中设置配置
title: Hello World
date: 2013-07-14 17:01:34
categories:
- foo
- bar
将指定文章置顶;需要置顶文章的 front-matter 中,添加 top: true 即可置顶
三、hexo相关命令
hexo init 初始化目录
hexo new "postName" #新建文章
hexo new page "pageName" #新建页面
hexo generate #生成静态页面至public目录
hexo server #开启预览访问端口(默认端口4000,'ctrl + c'关闭server)
hexo deploy #部署到GitHub
hexo help # 查看帮助
hexo version #查看Hexo的版本
hexo clean 清除
hexo n == hexo new
hexo g == hexo generate
hexo s == hexo server
hexo d == hexo deploy
hexo s -g #生成并本地预览
hexo d -g #生成并上传
四、插件
文章置顶插件
npm add hexo-helper-post-top
部分到git
npm add hexo-deployer-git
中文地址转拼音
yarn add hexo-permalink-pinyin
搜索
yarn add hexo-generator-search
代码高亮
yarn add hexo-prism-plugin
生成百度站点地图
yarn add hexo-generator-baidu-sitemap
五、next主题
下载地址 https://github.com/theme-next/hexo-theme-next/releases
下载后将压缩包解压放到\themes\next目录中
1.修改站点配置文件
theme: next
六、语法
---
title: hexo相关配置和安装
date: 2020-4/22 20:46:25
categories:
- other
tags:
- hexo
---