mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-07-22 13:53:43 -04:00
* Add JSON schema for external plugin - "mkdocs-awesome-nav". * Add reference to 'awesome-nav' plugin in external plugins schema. * art: Fix missing newline at end of file in plugins schema files.
30 lines
878 B
JSON
30 lines
878 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"title": "Custom advanced navigation config for MkDocs using extra YAML files.",
|
|
"oneOf": [
|
|
{
|
|
"markdownDescription": "https://github.com/lukasgeiter/mkdocs-awesome-nav",
|
|
"const": "awesome-nav"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"awesome-nav": {
|
|
"type": "object",
|
|
"markdownDescription": "https://lukasgeiter.github.io/mkdocs-awesome-nav",
|
|
"properties": {
|
|
"filename": {
|
|
"title": "The YAML file that defines the navigation",
|
|
"markdownDescription": "https://lukasgeiter.github.io/mkdocs-awesome-nav",
|
|
"type": "string",
|
|
"default": ".nav.yml"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
]
|
|
}
|