2022-01-29 18:12:25 +03:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
|
|
"title": "Markdown extensions",
|
|
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
2023-11-22 10:03:04 +03:00
|
|
|
"anyOf": [
|
2022-01-29 18:12:25 +03:00
|
|
|
{
|
2023-11-22 10:03:04 +03:00
|
|
|
"$ref": "#/$defs/external"
|
2022-01-29 18:12:25 +03:00
|
|
|
},
|
|
|
|
{
|
2023-11-22 10:03:04 +03:00
|
|
|
"$ref": "#/$defs/external-community"
|
2022-01-29 18:12:25 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"uniqueItems": true,
|
2023-11-22 10:03:04 +03:00
|
|
|
"minItems": 1,
|
|
|
|
"$defs": {
|
|
|
|
"external": {
|
|
|
|
"description": "External markdown extensions, schema provided by us",
|
|
|
|
"anyOf": [
|
|
|
|
{
|
|
|
|
"$ref": "extensions/markdown.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$ref": "extensions/pymdownx.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"external-community": {
|
|
|
|
"description": "External markdown extensions, schema provided by our community",
|
|
|
|
"anyOf": [
|
|
|
|
{
|
|
|
|
"$ref": "https://raw.githubusercontent.com/Neoteroi/mkdocs-plugins/main/docs/extensions-schema.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2022-01-29 18:12:25 +03:00
|
|
|
}
|