Renders tag pages showing all content tagged with a specific tag. Automatically generates virtual pages for all tags found across content.
npx quartz plugin add github:quartz-community/tag-pageplugins:
- source: github:quartz-community/tag-page
enabled: trueFor advanced use cases, you can override in TypeScript:
import * as ExternalPlugin from "./.quartz/plugins";
ExternalPlugin.TagPage({
numPages: 10,
prefixTags: false,
});| Option | Type | Default | Description |
|---|---|---|---|
sort |
SortFn |
undefined |
A function to sort the pages with the tag. |
numPages |
number |
undefined |
The number of pages to show per tag page. |
prefixTags |
boolean |
false |
Whether to prefix generated tag page titles with "Tag: " (e.g. "Tag: recipes"). |
See the Quartz documentation for more information.
MIT