mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
67 lines
2.4 KiB
JSON
67 lines
2.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"title": "Built-in projects plugin",
|
|
"oneOf": [
|
|
{
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/",
|
|
"enum": [
|
|
"projects"
|
|
]
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"projects": {
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/",
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"title": "Enable plugin",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.enabled",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"concurrency": {
|
|
"title": "Concurrency (number of CPUs)",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.concurrency",
|
|
"type": "number"
|
|
},
|
|
"cache": {
|
|
"title": "Enable caching",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.cache",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"cache_dir": {
|
|
"title": "Cache directory",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.cache_dir",
|
|
"type": "string",
|
|
"default": ".cache/plugins/projects"
|
|
},
|
|
"projects": {
|
|
"title": "Enable projects",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.projects",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"projects_dir": {
|
|
"title": "Projects directory",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.projects_dir",
|
|
"type": "string",
|
|
"default": "projects"
|
|
},
|
|
"hosting": {
|
|
"title": "Enable hoisting",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/plugins/projects/#config.hoisting",
|
|
"type": "boolean",
|
|
"default": true
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
]
|
|
}
|