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

@@ -17,9 +17,11 @@ See [[recent notes]] for detailed usage information.
This plugin accepts the following configuration options:
- `title`: The title of the recent notes section. Defaults to `Recent notes`.
- `limit`: The maximum number of recent notes to display. Defaults to `5`.
- `limit`: The maximum number of recent notes to display. Defaults to `3`.
- `showTags`: Whether to display the tags for each note. Defaults to `true`.
- `linkToMore`: A slug to a page that shows more notes. Defaults to `""`.
- `linkToMore`: A slug to a page that shows more notes. Defaults to `false`.
- `hideTagPages`: Whether to hide tag index pages from the list. Defaults to `false`.
- `hideFolderPages`: Whether to hide folder index pages from the list. Defaults to `false`.
### Default options
@@ -27,10 +29,10 @@ This plugin accepts the following configuration options:
- source: github:quartz-community/recent-notes
enabled: true
options:
title: Recent notes
limit: 5
limit: 3
showTags: true
linkToMore: ""
hideTagPages: false
hideFolderPages: false
```
## API