Added repository, enabled, and required fields to the frontmatter of all 44 plugin documentation files. Updated Plugins.base to include these columns, matching the information previously in the manual tables. Also filtered out internal plugins (Assets, Static, ComponentResources, NotFoundPage) from the base query.
117 lines
2.4 KiB
Plaintext
117 lines
2.4 KiB
Plaintext
filters:
|
|
and:
|
|
- file.ext == "md"
|
|
- file.inFolder("plugins")
|
|
- "!file.name.startsWith('index')"
|
|
- "!file.name.contains('Demo')"
|
|
- "!file.name.contains('Static')"
|
|
- "!file.name.contains('Assets')"
|
|
- "!file.name.contains('ComponentResources')"
|
|
- "!file.name.contains('NotFoundPage')"
|
|
formulas:
|
|
category: |
|
|
if(file.hasTag("plugin/transformer"), "Transformer",
|
|
if(file.hasTag("plugin/filter"), "Filter",
|
|
if(file.hasTag("plugin/pageType"), "Page Type",
|
|
if(file.hasTag("plugin/emitter"), "Emitter",
|
|
if(file.hasTag("plugin/component"), "Component",
|
|
"Other")))))
|
|
properties:
|
|
title:
|
|
displayName: Plugin
|
|
repository:
|
|
displayName: Repository
|
|
enabled:
|
|
displayName: Enabled
|
|
required:
|
|
displayName: Required
|
|
description:
|
|
displayName: Description
|
|
views:
|
|
- type: table
|
|
name: All Plugins
|
|
groupBy:
|
|
property: formula.category
|
|
direction: ASC
|
|
order:
|
|
- title
|
|
- repository
|
|
- enabled
|
|
- required
|
|
- description
|
|
sort:
|
|
- property: formula.category
|
|
direction: ASC
|
|
- property: title
|
|
direction: ASC
|
|
- type: table
|
|
name: Transformers
|
|
filters:
|
|
and:
|
|
- file.hasTag("plugin/transformer")
|
|
order:
|
|
- title
|
|
- repository
|
|
- enabled
|
|
- required
|
|
- description
|
|
sort:
|
|
- property: title
|
|
direction: ASC
|
|
- type: table
|
|
name: Filters
|
|
filters:
|
|
and:
|
|
- file.hasTag("plugin/filter")
|
|
order:
|
|
- title
|
|
- repository
|
|
- enabled
|
|
- required
|
|
- description
|
|
sort:
|
|
- property: title
|
|
direction: ASC
|
|
- type: table
|
|
name: Page Types
|
|
filters:
|
|
and:
|
|
- file.hasTag("plugin/pageType")
|
|
order:
|
|
- title
|
|
- repository
|
|
- enabled
|
|
- required
|
|
- description
|
|
sort:
|
|
- property: title
|
|
direction: ASC
|
|
- type: table
|
|
name: Emitters
|
|
filters:
|
|
and:
|
|
- file.hasTag("plugin/emitter")
|
|
order:
|
|
- title
|
|
- repository
|
|
- enabled
|
|
- required
|
|
- description
|
|
sort:
|
|
- property: title
|
|
direction: ASC
|
|
- type: table
|
|
name: Components
|
|
filters:
|
|
and:
|
|
- file.hasTag("plugin/component")
|
|
order:
|
|
- title
|
|
- repository
|
|
- enabled
|
|
- required
|
|
- description
|
|
sort:
|
|
- property: title
|
|
direction: ASC
|