mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-21 21:45:42 -05:00
chore: updated plugins
This commit is contained in:
parent
5e773d8fa9
commit
3186a6be74
@ -52,7 +52,7 @@ plugins:
|
||||
- aliases
|
||||
excludedProperties: []
|
||||
hidePropertiesView: false
|
||||
delimiters: "---"
|
||||
delimiters: ---
|
||||
language: yaml
|
||||
order: 5
|
||||
layout:
|
||||
@ -223,6 +223,27 @@ plugins:
|
||||
position: left
|
||||
priority: 15
|
||||
display: all
|
||||
- source: github:quartz-community/bases-page
|
||||
enabled: true
|
||||
options: {}
|
||||
order: 50
|
||||
- source: github:quartz-community/note-properties
|
||||
enabled: true
|
||||
options:
|
||||
includeAll: false
|
||||
includedProperties:
|
||||
- description
|
||||
- tags
|
||||
- aliases
|
||||
excludedProperties: []
|
||||
hidePropertiesView: false
|
||||
delimiters: ---
|
||||
language: yaml
|
||||
order: 5
|
||||
layout:
|
||||
position: beforeBody
|
||||
priority: 15
|
||||
display: all
|
||||
layout:
|
||||
groups:
|
||||
toolbar:
|
||||
|
||||
@ -19,6 +19,12 @@
|
||||
"commit": "8adb778566a3d8425d321d6bbc0b673cba9ec63d",
|
||||
"installedAt": "2026-02-17T17:28:30.109Z"
|
||||
},
|
||||
"bases-page": {
|
||||
"source": "github:quartz-community/bases-page",
|
||||
"resolved": "https://github.com/quartz-community/bases-page.git",
|
||||
"commit": "d1c17e3e3e7c55b5e1424201d49a28cc97fee75d",
|
||||
"installedAt": "2026-02-22T23:31:39.886Z"
|
||||
},
|
||||
"breadcrumbs": {
|
||||
"source": "github:quartz-community/breadcrumbs",
|
||||
"resolved": "https://github.com/quartz-community/breadcrumbs.git",
|
||||
@ -145,6 +151,12 @@
|
||||
"commit": "6660addddc5af95437d225ebf3ec2cfecf4527e7",
|
||||
"installedAt": "2026-02-18T19:52:49.775Z"
|
||||
},
|
||||
"note-properties": {
|
||||
"source": "github:quartz-community/note-properties",
|
||||
"resolved": "https://github.com/quartz-community/note-properties.git",
|
||||
"commit": "107fe07c1238cc785aaa339e356282cc55f1c8b6",
|
||||
"installedAt": "2026-02-22T23:31:48.982Z"
|
||||
},
|
||||
"obsidian-flavored-markdown": {
|
||||
"source": "github:quartz-community/obsidian-flavored-markdown",
|
||||
"resolved": "https://github.com/quartz-community/obsidian-flavored-markdown.git",
|
||||
|
||||
@ -263,7 +263,9 @@ export async function loadQuartzConfig(): Promise<QuartzConfig> {
|
||||
const processingCategories = ["transformer", "filter", "emitter", "pageType"] as const
|
||||
let resolvedCategory: string | undefined
|
||||
if (Array.isArray(category)) {
|
||||
resolvedCategory = category.find((c) => (processingCategories as readonly string[]).includes(c))
|
||||
resolvedCategory = category.find((c) =>
|
||||
(processingCategories as readonly string[]).includes(c),
|
||||
)
|
||||
} else {
|
||||
resolvedCategory = category
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user