添加分类、标签

在博客文件夹下,我的文件夹为Myblog,执行以下命令:

1
2
$ hexo new page categories
$ hexo new page tags

然后编辑/tags/index.md/categories/index.md文件,默认只有type内容,需要添加layout:

1
2
3
4
5
6
type: "tags"
layout: "tags"


type: "categories"
layout: "categories"

不添加无法在博客的categories跟tags下读取到文章中添加的分类以及标签。

在文章中添加分类以及标签

回顾一下,添加文章的命令:

1
$ hexo new '使用hexo+github搭建个人博客'

打开使用hexo+github搭建个人博客.md文档,里面默认存在以下内容:

1
2
3
4
5
---
title: test
date: 2018-10-22 14:44:10
tags:
---

在编写文章之前,我们先确定文章的类型以及所需的标签,填写以下内容:

1
2
3
4
5
6
---
title: 使用hexo+github搭建个人博客
date: 2018-10-22 14:44:10
tags: [Blog,Hexo]
categories: 博客教程
---

此时,当我们发布文章时,将会自动关联博客教程分类以及Blog跟Hexo标签,方便于我们的搜索查看。