docs: add prefixTags option to configuration table

This commit is contained in:
saberzero1 2026-03-18 17:47:01 +01:00
parent 49e6c6af86
commit 9bd824ee48
No known key found for this signature in database

View file

@ -23,15 +23,17 @@ import * as ExternalPlugin from "./.quartz/plugins";
ExternalPlugin.TagPage({
numPages: 10,
prefixTags: false,
});
```
## Configuration
| 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. |
| 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"). |
## Documentation