blog/source/_posts/hello-hexo.md

33 lines
440 B
Markdown
Raw Normal View History

2022-08-30 10:44:13 +00:00
---
title: Hello, Hexo!
keywords: []
categories: []
tags: [hexo]
sitemap: true
---
**数字化记忆**使用 [Hexo](https://hexo.io/) 创建! Hexo 的其它详细使用方法请参其 [文档](https://hexo.io/docs/) 。
## 新建
``` bash
hexo new "我是一篇新帖子"
```
## 生成
``` bash
hexo generate
```
## 发布
``` bash
hexo deploy
```
也可使用以下简化版命令生成发布一次搞定:
``` bash
hexo g -d
```