1
0
mirror of synced 2025-12-23 03:44:00 -05:00

Use a spotlight frontmatter property for category landing pages (#53443)

This commit is contained in:
Hector Alfaro
2024-12-04 16:15:47 -05:00
committed by GitHub
parent 13e7dc847a
commit ccdeff3a42
5 changed files with 65 additions and 39 deletions

View File

@@ -262,6 +262,22 @@ export const schema = {
octicon: {
type: 'string',
},
spotlight: {
type: 'array',
minItems: 3,
maxItems: 3,
items: {
type: 'object',
properties: {
article: {
type: 'string',
},
image: {
type: 'string',
},
},
},
},
// END category landing tags
},
}