(前提bk为自己的hexo目录)
进入博客目录,执行如下命令:
$ cd source/_posts/
执行如下命令生成“分类”属性
$ hexo new page categories
INFO Checking dependencies
INFO Validating the configuration file
INFO Created: ~\bk\source\categories\index.md
进入刚生成的\bk\source\categories\index.md中修改
---
title: categories
date: 2020-03-29 23:13:18
type: "categories" ----这是需要修改的内容,其他别动
---
进入自己写的文章在开头添加
$ head -n 7 source/_posts/Linux如何配置静Ip.md
---
title: Linux如何配置静Ip ---标题
date: 2019-3-1 ----时间
categories:
- 运维 ----类别
---
。。。
博客内容
最后自己刷新重启
(创建标签与上述类似)
进入博客目录,执行如下命令生成“分类”属性,执行如下命令:
$ hexo new page tags
INFO Checking dependencies
INFO Validating the configuration file
进入刚生成的\bk\source\tags中,修改index.md
$ cat source/tags/index.md
---
title: tags
date: 2020-03-29 23:28:13
type: "tags" ---修改内容
---
在刚写的文章中添加标签
---
title: Linux如何配置静Ip
date: 2019-3-1
categories:
- 运维 ---这是上面的分类
tags:
- Linux
- 网络 --这是标签
---
最后重启即可
原文:https://www.cnblogs.com/liuzhijun666/p/13127333.html