mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
||
"$schema": "https://json-schema.org/draft-07/schema",
|
||
"title": "Material for MkDocs",
|
||
"markdownDescription": "Configuration syntax",
|
||
"type": "object",
|
||
"properties": {
|
||
"site_name": {
|
||
"title": "Site name – set in header, title and drawer",
|
||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_name",
|
||
"type": "string"
|
||
},
|
||
"site_url": {
|
||
"title": "Site URL",
|
||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_url",
|
||
"type": "string"
|
||
},
|
||
"site_author": {
|
||
"title": "Site author, set as meta tag",
|
||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_author",
|
||
"type": "string"
|
||
},
|
||
"site_description": {
|
||
"title": "Site description, set as meta tag and in social cards",
|
||
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#site_description",
|
||
"type": "string"
|
||
},
|
||
"theme": {
|
||
"$ref": "schema/theme.json"
|
||
},
|
||
"plugins": {
|
||
"$ref": "schema/plugins.json"
|
||
},
|
||
"markdown_extensions": {
|
||
"$ref": "schema/extensions.json"
|
||
}
|
||
},
|
||
"additionalProperties": false,
|
||
"required": [
|
||
"site_name"
|
||
]
|
||
}
|