hexo相关笔记

一些配置规则

路径生成规则

pwd"E:\tenyding\blog\source\_posts" 文章根目录

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# eg:
# E:\tenyding\blog\source\_posts\study\js\base.md
# 假设当前文章开头如下
---
title: test
tags: [Mongodb,bash]
categories: [技术,小玩意]
categories_path: [技术]
---

# 文章路径
http://tenyding.cn/_posts/[folder_1]/[folder_2]/.../[folder_*]/aaa/
-> http://tenyding.cn/study/js/base/

# 分类路径
http://tenyding.cn/categories/[...categories]/
-> http://tenyding.cn/categories/技术/小玩意/

# 标签路径
http://tenyding.cn/tags/[tags]/
-> http://tenyding.cn/tags/Mongodb/
-> http://tenyding.cn/tags/bash/