Taxonomies

Table of Contents

  1. Usage

Support for custom taxonomies.

Usage

authors, categories and tags taxonomies are supported by default. To use them, simply add an array of values to the frontmatter in your markdown documents:

---
authors: Thom Bruce
categories:
  - Features
  - Components
tags:
  - example
  - articles
  - blogging
---

You can add additional taxonomies in your project's app.config.ts:

export default defineAppConfig({
  // ...
  taxonomies: [
    'books',
    'movies',
    'contributors',
  ],
  // ...
})

These will extend the list of taxonomies supported, not replace it.