docs: fix incorrect plugin option defaults and phantom options

- Citations: remove non-existent prettyLink option
- Explorer: correct folderClickBehavior default from collapse to link
- RecentNotes: fix limit default from 5 to 3, add hideTagPages/hideFolderPages
- StackedPages: fix option names to match source (maxTabs, not maxPanes)
This commit is contained in:
saberzero1
2026-05-22 20:07:47 +02:00
parent c6d7da00b2
commit bc1c6a47d8
4 changed files with 13 additions and 16 deletions

View File

@@ -19,7 +19,7 @@ This plugin accepts the following configuration options:
**YAML options** (in `quartz.config.yaml`):
- `title`: The title of the explorer. Defaults to `Explorer`.
- `folderClickBehavior`: The behavior when a folder is clicked. Can be `"link"` to navigate or `"collapse"` to toggle. Defaults to `collapse`.
- `folderClickBehavior`: The behavior when a folder is clicked. Can be `"link"` to navigate or `"collapse"` to toggle. Defaults to `link`.
- `folderDefaultState`: The default state of folders. Can be `"collapsed"` or `"open"`. Defaults to `collapsed`.
- `useSavedState`: Whether to use local storage to save the state of the explorer. Defaults to `true`.
@@ -37,7 +37,7 @@ This plugin accepts the following configuration options:
enabled: true
options:
title: Explorer
folderClickBehavior: collapse
folderClickBehavior: link
folderDefaultState: collapsed
useSavedState: true
```