Category hierarchy
2021-02-15 09:38 hexo
Summary of this post
An introduction to hexoโs category hierarchy.
Categories with hierarchy
# tag:
- Fruit
- Apple
# Result:
โโโ Fruit
โโโ Apple
Categories without hierarchy (no hierarchy, parallel)
# tag:
- [Fruit, Apple]
- [Vegetable]
# Result:
โโโ Fruit
| โโโ Apple
โโโ Vegetable
Multiple parallel categories
# tag:
- [Fruit, Apple]
- [Fruit, Orange]
- [Vegetable]
# Result:
โโโ Fruit
| โโโ Apple
| โโโ Orange
โโโ Vegetable
Sub-sub-category
# tag:
- [Fruit, Apple, Apple seed]
- [Vegetable]
# Result:
โโโ Fruit
| โโโ Apple
| โโโ Apple Seed
โโโ Vegetable