hexo的一些配置和命令
hexo 常用指令
hexo new "post title with whitespace" // 新增md文章
hexo clean // 清除
hexo g // 生成静态文件。
hexo g -d // 文件生成后立即部署网站
站内文章跳转
通过内置的标签插件的语法post_link来实现引用
{% post_link 文章文件名(不要后缀) 文章标题(可选) %}
hexo安装
请看 官网
NexT主题
使用流行的NexT,NexT官网
默认主题
插件扩展请看 个人网站的功能插件
评论插件-gitalk
修改内容区宽度
添加文章阴影
文章摘要设置
修改配置文件_config.yml
# Automatically Excerpt. Not recommend.
# Please use <!-- more --> in the post to control excerpt accurately.
auto_excerpt:
enable: false
length: 150
注:使用<!-- more -->
标志来精确控制文章的摘要预览,通常在文章开头写一下概要。
一篇文章多个 categories
Hexo 一篇文章多个 categories:这里yaml语法错误,列表-的后面没有空格
-
子分类
categories: - Java - Servlet # 或者下面写法 categories: [Java, Servlet]
-
同级多个分类
categories: [[Java], [Servlet]] # yaml兼容Json的语法,直接写Json串 categories: [[Java, Servlet], [Servlet2]] # 包含子分类 # 或者下面写法 categories: - [Java] - [Servlet] # 下面包含子分类 categories: - [Java, Servlet] - [Programming]