如何快速显示所有文章的标签和分类数据
配置
由于 vitepress 目前不能够生成纯动态的页面,所以需要增加 tag.md
category.md
生成对应信息
-> tag.md
md
---
layout: tag
---
-> category.md
md
---
layout: category
---
然后在配置中通过 tag 和 category 属性配置对应链接
使用
在文档中的 frontmatter 中增加相关信息即可
md
---
tags:
- vitepress
- vitepress-themt-ououe
categories:
- blog
- theme
---
或者
md
---
tag: vitepress
category: blog
---