Hello World

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

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Clean buffer

1
$ hexo clean

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

skyang

1.清除缓存可以帮助你重置主题,删除多余标签

1
hexo clean

2.快速生成并部署

1
hexo g -d

3. 书写markdown文档时题头用例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
title: Git基础
date: 2024-08-03 22:04:53
tags:
- git
- linux
categories:
- 计算机基础
---

摘要内容 ......

<!--more-->
<!--more-->

正文内容 ......