Hexo 常用配置 发表于 2024-09-04 | 更新于 2024-09-04
| 字数总计: 349 | 阅读时长: 1分钟
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
More info: Writing
Run server
More info: Server
Generate static files
More info: Generating
Deploy to remote sites
搜索配置
常用命令
清除缓存文件 (db.json
) 和已生成的静态文件 (public
)。
生成静态文件。
部署你的网站。
启动服务器。 默认情况下,访问网址为: http://localhost:4000/
。
文章类操作 新建文章 [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:46tags: ---
参数
描述
默认值
layout
布局
无
title
标题
无
date
建立日期
文件建立日期
updated
更新日期
文件更新日期
comments
开启文章评论功能
true
tags
标签
(不适用于分页)
categories
分类
(不适用于分页)
permalink
覆盖文章网址
无
categories: - 博客 tags: - 创建文章
More info: Deployment