From 9bd824ee484801283f3e81cd9c400eba780505ce Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Wed, 18 Mar 2026 17:47:01 +0100 Subject: [PATCH] docs: add prefixTags option to configuration table --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9dda888..8906557 100644 --- a/README.md +++ b/README.md @@ -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