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.
# Quick Start
# Create a new post
$ hexo new "My New Post" |
More info: Writing
也可以手动添加文档 -> 文件名.md 放入:主文件夹 /source/_posts/ 中。
一定要在文档开头添加:
---
title: 文章的标题
date: 2022-01-01 01:01:01
categories:
- [博客的分类1]
- [博客的分类2]
- [博客的分类3]
tags:
- 标签1
- 标签2
---
这里开始使用Markdown书写博客正文
否则会出现问题!!!
# Run server
$ hexo server |
More info: Server
# Generate static files
$ hexo generate |
More info: Generating
# Deploy to remote sites
$ hexo deploy |
More info: Deployment