mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
40 lines
946 B
JSON
40 lines
946 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"title": "Markdown extensions",
|
|
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/",
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/$defs/external"
|
|
},
|
|
{
|
|
"$ref": "#/$defs/external-community"
|
|
}
|
|
]
|
|
},
|
|
"uniqueItems": true,
|
|
"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"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|