mkdocs-material/docs/schema/plugins/external/gen-files.json

30 lines
618 B
JSON
Raw Normal View History

{
"$schema": "https://json-schema.org/draft-07/schema",
2023-01-28 16:41:31 +03:00
"title": "Generate pages during the build",
"oneOf": [
{
"markdownDescription": "https://github.com/oprypin/mkdocs-gen-files",
"enum": [
"git-authors"
]
},
{
"type": "object",
"properties": {
"gen-files": {
"additionalProperties": false,
"properties": {
"scripts": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": ["object", "null"]
}
}
2023-01-28 16:41:31 +03:00
}
]
}