docs: replace manual plugin tables with inline .base files
Plugin listings in plugins/index.md and getting-started/whats-new.md are now generated from .base files that query plugin docs by their tags. This prevents the tables from going out of sync when plugins are added or updated. Added new-in-v5 frontmatter property to 8 plugin docs for the what's-new page filter.
This commit is contained in:
98
docs/plugins/Plugins.base
Normal file
98
docs/plugins/Plugins.base
Normal file
@@ -0,0 +1,98 @@
|
||||
filters:
|
||||
and:
|
||||
- file.ext == "md"
|
||||
- file.inFolder("plugins")
|
||||
- "!file.name.startsWith('index')"
|
||||
- "!file.name.contains('Demo')"
|
||||
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")))))
|
||||
source: |
|
||||
if(file.hasTag("plugin/transformer"), "community",
|
||||
if(file.hasTag("plugin/filter"), "community",
|
||||
if(file.hasTag("plugin/pageType"), "community",
|
||||
if(file.hasTag("plugin/emitter"), "community",
|
||||
if(file.hasTag("plugin/component"), "community",
|
||||
"internal")))))
|
||||
properties:
|
||||
title:
|
||||
displayName: Plugin
|
||||
formula.category:
|
||||
displayName: Type
|
||||
description:
|
||||
displayName: Description
|
||||
views:
|
||||
- type: table
|
||||
name: All Plugins
|
||||
groupBy:
|
||||
property: formula.category
|
||||
direction: ASC
|
||||
order:
|
||||
- title
|
||||
- formula.category
|
||||
- description
|
||||
sort:
|
||||
- property: formula.category
|
||||
direction: ASC
|
||||
- property: title
|
||||
direction: ASC
|
||||
- type: table
|
||||
name: Transformers
|
||||
filters:
|
||||
and:
|
||||
- file.hasTag("plugin/transformer")
|
||||
order:
|
||||
- title
|
||||
- description
|
||||
sort:
|
||||
- property: title
|
||||
direction: ASC
|
||||
- type: table
|
||||
name: Filters
|
||||
filters:
|
||||
and:
|
||||
- file.hasTag("plugin/filter")
|
||||
order:
|
||||
- title
|
||||
- description
|
||||
sort:
|
||||
- property: title
|
||||
direction: ASC
|
||||
- type: table
|
||||
name: Page Types
|
||||
filters:
|
||||
and:
|
||||
- file.hasTag("plugin/pageType")
|
||||
order:
|
||||
- title
|
||||
- description
|
||||
sort:
|
||||
- property: title
|
||||
direction: ASC
|
||||
- type: table
|
||||
name: Emitters
|
||||
filters:
|
||||
and:
|
||||
- file.hasTag("plugin/emitter")
|
||||
order:
|
||||
- title
|
||||
- description
|
||||
sort:
|
||||
- property: title
|
||||
direction: ASC
|
||||
- type: table
|
||||
name: Components
|
||||
filters:
|
||||
and:
|
||||
- file.hasTag("plugin/component")
|
||||
order:
|
||||
- title
|
||||
- description
|
||||
sort:
|
||||
- property: title
|
||||
direction: ASC
|
||||
Reference in New Issue
Block a user