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

$ hexo new "My New Post"

More info: Writing

Run server

$ hexo server

More info: Server

Generate static files

$ hexo generate

More info: Generating

Deploy to remote sites

$ hexo deploy

搜索配置

# 提交索引到 algolia 
hexo algolia # 等价于hexo a

常用命令

hexo clean

清除缓存文件 (db.json) 和已生成的静态文件 (public)。

hexo generate

生成静态文件。

hexo deploy

部署你的网站。

hexo server

启动服务器。 默认情况下,访问网址为: http://localhost:4000/

# 组合命令
hexo cl&&hexo g&&hexo d

文章类操作

新建文章

# hexo new [layout] <title>
[root@localhost blog]# hexo new "如何在hexo上创建一篇文章"
...
INFO Created: /blog/source/_posts/如何在hexo上创建一篇文章.md

Front-matter 设置

Front-matter 是文章最上方以—分隔的区域,用于指定文章的变量设置。

title: 如何在hexo上创建一篇文章
date: 2020-09-16 19:33:46
tags:
---
参数 描述 默认值
layout 布局
title 标题
date 建立日期 文件建立日期
updated 更新日期 文件更新日期
comments 开启文章评论功能 true
tags 标签 (不适用于分页)
categories 分类 (不适用于分页)
permalink 覆盖文章网址
# 示例
categories:
- 博客
tags:
- 创建文章

More info: Deployment